$(function() {
 $(".bodyHeader").hide();
 $(".bodyHeader:contains('Order')").show();
 $("div.scrollable#lookbook").scrollable({
     size: 1
     }).circular(); 
$("#nav a").each(function() {
        if(this.href == window.location) $(this).addClass("current");
});
	 $('#home_rotate').cycle({
            fx:    'fade',
            speed:  4000,
            pause: 1
	});

    var url = window.location;

	if((url.href.match('checkout')) || (url.href.match('account'))){
		$("table").addClass('checkout');
		$("span#SetDefault_Label").removeClass('bodyText');
		$("span#SetDefault_Label").addClass('future');
			}

    var lookbook = new Array('cart', 'checkout', '#');
	$("#footer_img").attr("src","graphics/footer.jpg");
	$("#footer_link").attr("href", "http://www.toririchard.com");
	$("#footer_link").attr("target","_blank");
        
});

