

$(document).ready(function(event){
    
	var path = window.location.pathname;
	
	if (path.indexOf('lang-') < 0) {
		if ($.cookies.test() && $.cookies.get("siteVersion") != 'desktop') {
			var agent = navigator.userAgent.toLowerCase();
			if (agent.indexOf("iphone") >= 0 || 
				agent.indexOf("windows ce") >= 0 || 
				agent.indexOf("android") >= 0 || 
				(navigator.platform && navigator.platform.toLowerCase().indexOf("android") >= 0))
			{
				window.location.href = "http://mobile.styledrops.com" + path;
			}
		}
	}
	
    $("#linkMobile a").click(function(event) {
        $.cookies.set('siteVersion', 'mobile', {
            domain: '.styledrops.com',
            path: '/',
            expiresAt: new Date(parseInt(new Date().getFullYear()) + 2, 1, 1)
        });
        return true;
    });  

});
