


// ** Search box **
// **     (.e.which==13)       **
$(function(){ // (executes when the dom is ready)
	$("#search-box input.search-input").keypress(function(e) {
		if (e.which==13) {
			doSearch();
			return false;
		}
	});

	$("#search-box a.search-button").click(function(){
		doSearch();
		return false;
	});
	
});

function doSearch() {
	searchURL= "/pages/results.aspx?s=All%20Sites&k="+ document.getElementById("k").value;
	window.location.href= searchURL
}



// ** Misc **
// **      **

$(function(){ // (executes when the dom is ready)
	
	// change last top link
	$("#top-links li:last").addClass("last");
	
	// make logo a link to go back to home page
	$("#logo").click(function(){
		document.location = "/";
	}).css("cursor","pointer");
	
	//add child arrows to menus
	$("ul.rmVertical li div.rmSlide").parent().addClass("rmExpandArrow");
});


// ** Login Menu **
// **      **
$(function(){ // (executes when the dom is ready)
	
	// make logo a link to go back to home page
	$("#loginlink").click(function(){
		$("#loginmenu").show();
		return false;
	})

	$("#loginmenu").hoverIntent(function(){
		//$("#loginmenu").show();
		//return false;
	}, function() {
		$("#loginmenu").hide();
		return false;
		
	})	
});

// ** Home Page **
// **      **
/*
$(function(){ // (executes when the dom is ready)

$("#home-hero h3").click(function(){

})
	
});

*/

/**
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);


/* stop IE6 flicker */
try { document.execCommand("BackgroundImageCache", false, true); } catch(err) {}

