$(document).ready(function() {

	$("#globalNav li").hover(						  
		function () {
			$(this).children("ul").show();
		}, 
		function () {
			$(this).children("ul").hide();
		}
	);				  
	
	$("#newscolContainer").tabs();
	$("#newscolContainer").tabs("select", 1);
	
	$("input#searchBox").focus(
	function () {
		if($(this).val() == "Search Wheelock"){
			$(this).val("");
			$(this).attr("style","background:#dddfc7");
		}
	});
	
	$("input#searchBox").focusout(
	function () {
		if($(this).val() == ""){
			$(this).val("Search Wheelock");
			$(this).attr("style","background:#dddfc7");
		}
	});
	
});
 
//drop down jump menu function
function jumpTo(form) {
	var tempIndex = form.quickLinksSelect.selectedIndex;
	if(tempIndex == 0) {
		//nothing happens
	}
	else {
		jumpUrl = form.quickLinksSelect.options[tempIndex].value;
		window.location.assign(jumpUrl);
	}
}
