$(document).ready(function() {

	$("#globalNav li").hover(						  
		function () {
			$(this).children("ul").show();
		}, 
		function () {
			$(this).children("ul").hide();
		}
	);				  

	$("#newscolContainer").tabs();
	//$("#newscolContainer").triggerTab(1);

});
 
//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);
	}
}