$(document).ready(
	function() {
		// Detect IE and show store arrow w/o animation
		if(!$.support.cssFloat) {
			setTimeout(
				function() {
					$('img#newstore').hide();
				}, 9300);
		}
		else {
			$('img#newstore').hide().delay(500).fadeIn(900).delay(7000).fadeOut(900);
		}
	}
);