/*HOMEPAGE redirect for mobile*/
if(window.location.pathname == "/" && window.location.hash != "#desktop" ) { 

	var deviceAgent = navigator.userAgent.toLowerCase();
	var agentID = deviceAgent.match(/(iphone|ipod|android|iemobile|9800|9780|9700|9670|9650|9330|9300|9100)/);
	if (agentID) {
			   window.location = "http://mobile.londonfashionweek.co.uk"
	
	}
	
	
	
}


 
