$(document).ready(
	function(){
		
		var zIndexNumber = 1000;
		/*$('div').each(function() {
			$(this).css('zIndex', zIndexNumber);
			zIndexNumber -= 10;
		});*/
		
		//$('div#footerfront').css('zIndex', 940);
		
		$('a#shopnowfrontbar').css('zIndex', 1050);
		$('div#nav').css('zIndex', 1100);
		
		$("a[rel='external']").addClass("external").click(
			function() {
				window.open( $(this).attr('href') );
				return false;
			});
		
		$("#front_images").innerfade({
			speed: 4000,
			timeout: 10000,
			containerheight: '350px'
			});
		
		$('#navlinks > li').bind('mouseover', nav_open);
   		$('#navlinks > li').bind('mouseout',  nav_timer);
		
	});

document.onclick = nav_close;
