$(function () {
    // set active menu item
    $('.radmenu a').each(function () {
        $(this).attr('href', $(this).attr('href').toLowerCase())
    });

    if(location.pathname.length > 1){
    	$('a[href*="' + location.pathname.substring(1) + '"]').parent().not('.slide a').addClass('active');
    }
   
    if (location.pathname.length == 1) {
        $('a[href*="home"]').parent().addClass('active');
    }

    $('.level3 .style2 #Content .sec1 .con1 .clear ').append('<a class="print" href="javascript:print()">Print page</a>')
});
