// Powered by jQuery

// Let the games begin!

$(document).ready(function() {

	new FontSizer();

	$('#shared').tabs();
	$('#reseller').tabs();
	$('#vps').tabs();
	$('#dedicated').tabs();

	});

// Sitemap Slider

$(document).ready(function() {
	
$("#sitemap_toggle").toggle(function() {

	// Show Sitemap

	$(this).addClass("opened").blur();
	$("#sitemap").fadeIn("normal");

	window.scrollTo(0,innerHeight);
	

},function() {

	// Hide it

	$(this).removeClass("opened").blur();
	$("#sitemap").fadeOut("normal");

});

// LIghtboxing

$("a.login").click(function() { 

	//$(".darkness").fadeIn("slow");
	$(".light").addClass("opened");

});

$(".light .close").click(function() {

	$(".light").removeClass("opened");

});

$("#customer_login.darkness").click(function() { 

	// This should only be asked if there is content inside of the text fields?

	are_you_sure=confirm("Would you like to close the login?");
	
	if(are_you_sure==true) {
		$(".light").removeClass("opened");
	}
	else {

	}

});

}); // End Ready Function
