$(document).ready(function() {

	// Animate home page if this is a new session
	if ($.cookie('homeload') != 1) {

		// Set session cookie for home page so subsequent loads don't animate
		$.cookie('homeload', 1);

		// Hide elements, then sequential fade in each column
		$("body.home div.column").hide(0);
		$("body.home #bottom").hide(0);
		$("body.home #header").hide(0).fadeIn(2000, function() {
			$("body.home div.column").EffectChain({effect: "fadeIn", onComplete:
				function() {
					$("body.home #showcase ul").innerfade({ animationtype: 'fade', speed: 2500, timeout: 2500, type: 'sequence', containerheight: '580px' });
					//$("#sidebar ul").innerfade({ animationtype: 'fade', speed: 2500, timeout: 2500, type: 'sequence', containerheight: '480px' });
				}
			});
			$("body.home #bottom").fadeIn(3000);
		});

	} else {

		$("#showcase ul").innerfade({ animationtype: 'fade', speed: 2500, timeout: 2500, type: 'sequence', containerheight: '580px' });
		//$("#sidebar ul").innerfade({ animationtype: 'fade', speed: 2500, timeout: 2500, type: 'sequence', containerheight: '480px' });
		$("#footwear").innerfade({ animationtype: 'fade', speed: 2500, timeout: 2500, type: 'sequence', containerheight: '580px' });

	}

	// Press image slider
	$("#press-scroll").smoothDivScroll({autoScroll: "onstart", autoScrollDirection: "endlessloop", autoScrollSpeed: 1});

});

