$(document).ready(function () 
{
	if (isFast()) 
	{
		$("body").addClass("fast");
		$("#splash").addClass("splashFast");		
	}
	else if (isPower())  
	{
		$("body").addClass("power");
		$("#splash").addClass("splashPower");	
	}
	else if (isPerformance())  
	{
		$("body").addClass("performance");
		$("#splash").addClass("splashPerformance");	
	}
	else if (isDetail())  
	{
		$("body").addClass("detail");
		$("#splash").addClass("splashDetail");	
	}
	else if (isGorgeous())  
	{
		$("body").addClass("gorgeous");
		$("#splash").addClass("splashGorgeous");	
	}
	
	//default bg
	else { $("body").addClass("fast"); $("#splash").addClass("splashFast"); }
		
});


function isFast() 
{
	return /fast/.test(window.location.href);
}
	
function isPower() 
{
	return /power/.test(window.location.href);
}

function isPerformance() 
{
	return /performance/.test(window.location.href);
}

function isDetail() 
{
	return /detail/.test(window.location.href);
}

function isGorgeous() 
{
	return /gorgeous/.test(window.location.href);
}
	
	

