$("document").ready(function() {
	//HOMEPAGE
	$("#howContent").hide();
	$("#howTitle").hide();
	$("#searchContent").hide();
	$("#searchTitle").hide();
	//SERVICE_DETAILS
	$("#details > #container-1 > #fragment-3 table").not(":first").hide();
	
	//Preload Home button images
	$.preload([ 'blue-hover', 'blue-normal', 'green-hover', 'green-normal',
	            'orange-hover', 'orange-normal'], {
	    base:'images/',
	    ext:'.jpg'
	});
});


//PANELS IN THE HOMEPAGE
function overPanel(which) {
	//Change background image on mouse over
	$("#headerPanel"+which).removeClass("out");
	$("#headerPanel"+which).addClass("on");
	//Hide unnecessary p's
	$("#bodyPanel > h2").hide();
	$("#bodyPanel > p.capstext").hide();
	//Show necessary p's
	$("#"+which+"Title").show();
	$("#"+which+"Content").show()
}

//ENDPOINTS COMBO
function changeEndpoint(which) {
	$("#details > #container-1 > #fragment-3 table").not(":first").hide();
	if (which >= 0) {
		$("#details > #container-1 > #fragment-3 #avail"+which).show();
		$("#details > #container-1 > #fragment-3 #avail_graph"+which).show();
	}
}

//TESTER POP-UP
function popup(url)
{
	var newwindow=window.open(url,'name','height=686,width=808');
	if (window.focus) {
		newwindow.focus()
	}
}
