///**************************************///				   
///*****     Browser Detection      *****///	
///**************************************///
function oldIE(){
	if (jQuery.browser.msie && parseInt(jQuery.browser.version) < 7) {
		return true;
	} else {
		return false;
	}
}

$(document).ready(function(){
///**************************************///				   
///*****      Superfish Menus       *****///	
///**************************************///
    $('ul.sf-menu').superfish({				  
		animation:   {height:'show'},
		delay:       1200
	});

///**************************************///				   
///*****         Search Box         *****///	
///**************************************///
    // Hide searchbox hint text when user enters search term
	$(".searchbox").focus( function () { $(this).addClass("searchboxshift"); });
    // Also hide hint text if searchbox is pre-populated with old value by browser
    if ($(".searchbox").val() != '') { $(".searchbox").addClass("searchboxshift"); }

///***
});
///***