$(function(){

if(navigator.userAgent.match(/iP(od|hone)/i) || navigator.userAgent.match(/Android/i)){
	
		var mobileCookie = "mobile_cookie";
		var options = { path: '/', expires: 8 };
		
		var siteSelector = $.cookie(mobileCookie);
		
		$("#fullsite").click(function(){
			$.cookie(mobileCookie, 'fullsite', options);
			return false;
		});
		$("#mobilesite").click(function(){
			$.cookie(mobileCookie, 'mobilesite', options);
			window.location.href="/iphone/";
			return false;
		});
		
		if (siteSelector != "fullsite") {
			window.location.href="/iphone/";
		};

}

});
	
