$.cookie('isCookiesEnabled', 'true', { expires: null });

if (navigator.userAgent.match(/Android/i) ||
navigator.userAgent.match(/webOS/i) ||
navigator.userAgent.match(/iPhone/i) ||
navigator.userAgent.match(/iPod/i) ||
navigator.userAgent.match(/iPad/i) ||
navigator.userAgent.match(/Blackberry/i)){

	if($.cookie('isCookiesEnabled') == "true" ) {
		if($.cookie('visitedHomePage') != "true" ) {
			$.cookie('visitedHomePage', 'true', { expires: null });
			window.location = 'http://www.brocade.com/splash.html';
		};
	};
};
