// we will use this file for random js scripts

// start iphone check
var agent=navigator.userAgent.toLowerCase();
var is_iphone = ((agent.indexOf('iphone')!=-1));
if (is_iphone) { 

	// redirect to iphone site.
	window.location = "/iphone/"

}