function mobileRedirect()
{
	if((navigator.userAgent.match(/iPhone/i))||(navigator.userAgent.match(/iPod/i))||(navigator.userAgent.match(/iPad/i))||(navigator.userAgent.match(/Android/i)))
		{window.location = "mobile/index.html";}
	else{window.location = "home.html";}
}
