//Preloader
$(function () { $('.fade_wp img').hide(); });

	var i = 0;//initialize
	var int=0;//Internet Explorer Fix
	$(window).bind("load", function() {
		var int = setInterval("doThis(i)",200);
	});

	function doThis() {
		var images = $('.fade_wp img').length;
		if (i >= images) {
			clearInterval(int);
		}
		$('.fade_wp img:hidden').eq(0).fadeIn(500);
		i++;
	}

//Domready
$(document).ready(function(){

//Breadcrumb
$('.breadcrumb li:last').addClass('last');

//home banner
$('#home_banner .item_listing').before('<div id="banner_nav">').cycle({
 fx: 'fade',
 pause: 1,
 timeout:2500,
 pager: '#banner_nav'
}); 

//colection fades
$(".small_colections_listing").css("background-color","#746059");
$(".men-women-page .small_colections_listing").hover(function () {
		$(this).addClass("hover");
		$('.men-women-page .small_colections_listing').not('.men-women-page .hover').stop().fadeTo(500,.3);
}, function () {
		$(this).removeClass("hover")
		$('.men-women-page .small_colections_listing').stop().fadeTo(500,1);
});



//Brand page listing
$('#slider').cycle({ 
		fx:'fade',
		next:'.next', 
		prev:'.prev',
		timeout: 0
});

$('#slider_w').cycle({ 
		fx:'fade',
		next:'.next_w', 
		prev:'.prev_w',
		timeout: 0
});

$('#slider_m').cycle({ 
		fx:'fade',
		next:'.next_m', 
		prev:'.prev_m',
		timeout: 0
});


//hide arows
var nr_slides = $('#slider a').size();
if( nr_slides > 1) {
    $('.colections_listing .next, .colections_listing .prev').show();
}else{
    $('.colections_listing .next, .colections_listing .prev').hide();
}

var nr_slides_w = $('#slider_w a').size();
if( nr_slides_w > 1) {
    $('#women_listing .next, #women_listing .prev').show();
}else{
    $('#women_listing .next, #women_listing .prev').hide();
}

var nr_slides_m = $('#slider_m a').size();
if( nr_slides_m > 1) {
    $('#men_listing .next, #men_listing .prev').show();
}else{
    $('#men_listing .next, #men_listing .prev').hide();
}

//thumb shine
$("#primary .brands_listing a").hover(
  function () {
		$(this).find(".shine").stop();
		$(this).find(".shine").css("background-position","-160px 0"); 
		$(this).find(".shine").animate({backgroundPosition: '160px 0'},500);
		$(this).find(".title").stop().animate({left:'0px'},{queue:false,duration:450});
  }, 
  function () {
		$(this).find(".title").stop().animate({left:'-160px'},{queue:false,duration:200});
  }
);


$(".colections_listing .item a").hover(
  function () {
		$(this).find(".shine").stop();
		$(this).find(".shine").css("background-position","-420px 0"); 
		$(this).find(".shine").animate({backgroundPosition: '420px 0'},500);
		$(this).find(".title").stop().animate({left:'0px'},{queue:false,duration:450});
  }, 
  function () {
		$(this).find(".title").stop().animate({left:'-160px'},{queue:false,duration:200});
  }
);

$(".small_colections_listing .item a").hover(
  function () {
		$(this).find(".shine").stop();
		$(this).find(".shine").css("background-position","-380px 0"); 
		$(this).find(".shine").animate({backgroundPosition: '380px 0'},500);
		$(this).find(".title").stop().animate({left:'0px'},{queue:false,duration:450});
  }, 
  function () {
		$(this).find(".title").stop().animate({left:'-160px'},{queue:false,duration:200});
  }
);

$(".about_thumb_listing a").hover(
  function () {
		$(this).find(".shine").stop();
		$(this).find(".shine").css("background-position","-380px 0"); 
		$(this).find(".shine").animate({backgroundPosition: '380px 0'},500);
		$(this).find(".title").stop().animate({left:'0px'},{queue:false,duration:450});
  }, 
  function () {
		$(this).find(".title").stop().animate({left:'-160px'},{queue:false,duration:200});
  }
);

$(".no_collection").hover(
  function () {
		$(this).find(".shine").stop();
		$(this).find(".shine").css("background-position","-673px 0"); 
		$(this).find(".shine").animate({backgroundPosition: '673px 0'},700);
  }, 
  function () {
  }
);

//Scrollbar
$('.content_txt_scroll, .press_wp ul').jScrollPane({scrollbarMargin:10});
$('.collection_image_listing').jScrollPane({scrollbarMargin:7});
$('.store_image_listing').jScrollPane({scrollbarMargin:7});
$('#primary .brands_listing').jScrollPane({scrollbarMargin:0}); 

//Newsletter
$('form.cform input[type=text]').focus(function(){ 
		if($(this).val() == $(this).attr('defaultValue'))
		{
			$(this).val('');
		}
	});
	
	$('form.cform input[type=text]').blur(function(){
		if($(this).val() == '')
		{
			$(this).val($(this).attr('defaultValue'));
		} 
	});


});
//Domready end
