$(document).ready(function() {	//REDIRECT IF IE6	if($.browser.msie && $.browser.version=="6.0") {//		alert("This site does not support Internet Explorer 6. You are using a browser that is extremely out of date.  You may update Internet Explorer in Windows Update, or download a modern browser like Firefox, Opera or Safari for free.  You will now be redirected to the download page for the latest version of Internet Explorer.");//		window.location = "http://www.microsoft.com/windows/internet-explorer/worldwide-sites.aspx";	}			//code for tool tip	$('.resourceMenuLink').mouseover(function(event) {		var description = $(this).children('.menuLinkDescription').val();		if (description != ' ') {			$("body").append('<div id="popUpWrapper">'+'<div id="popUpBackground"></div>'+'<div id="popUpContent">'+description+'</div>'+'</div>');		}	}).mouseout(function() {		removePopUp();	});		$('.resourceMenuLink').mousemove(function(e){		$("#popUpWrapper").css("top",(e.pageY - 50) + "px").css("left",(e.pageX + 50) + "px");	});		//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 	$(".resources_menu_head").mouseenter(function() {		if(!$(this).hasClass('open')) {			$(this).animate({opacity: "1"}, 300, function () {				$(".resources_menu_head").removeClass("open");				$(this).addClass('open').parent().next(".resources_menu_body").slideToggle(150).siblings(".resources_menu_body").slideUp(150);			});		}	}).mouseleave(function() {		$(this).stop();	});	});function positionPopUp(event) {    var tPosX = event.pageX + 100;    var tPosY = event.pageY;    $('#popUpWrapper').css({top: tPosY, left: tPosX});}function removePopUp() {	$('#popUpWrapper').remove();}