$(
	function(){

			// toplinks
			$("#header > #top_links > .btn").mouseover(function() {
				$(this).stop().animate({marginTop: "5"}, 200, "linear", null, null, false)
			}).mouseout(function() {
				$(this).stop().animate({marginTop: "0"}, 200, "linear", null, null, false)
			});
			
			// main nav links
			$("#header > #main_nav li > a").mouseover(function() {
				$(this).children("img").stop().animate({marginTop: "5"}, 200, "linear", null, null, false)
			}).mouseout(function() {
				$(this).children("img").stop().animate({marginTop: "0"}, 200, "linear", null, null, false)
			});
	
			// TOOLTIPS
			// jquery.tooltip.min.js required
			$(".ttip").tooltip({ 
			    track: true, 
			    delay: 0,
			    showURL: false, 
			    opacity: 1, 
			    fixPNG: true, 
			    showBody: " - ", 
			    top: -15, 
			    left: 20
			}); 
			

});


// End Main Interface Scripts

var popUpWin=0;
function showWRMap() {
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  var width="470", height="515";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  popUpWin = open('/?fuseaction=wrmap', 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}