$(document).ready(function(){
	$('.rotate').cycle({ 
		fx:    'fade', 
		speed: 2000,
		pause: 12
	});
	$("label.overlabel").overlabel();
	$('#collection-nav li').hover(function() {
		$(this).children("div.mega-menu:hidden").show();
		$(this).addClass("hover");
	}, function() {
		$(this).children("div.mega-menu:visible").hide();
		$(this).removeClass("hover");
	});
	$('#collections-alpha-menu a').hover(function() {
		$('.collections-alpha').hide();
		$('#collections-alpha-menu a').removeClass("active");
		current_menu = $(this).attr("href");
		$(current_menu).show();
		$(this).addClass("active");
	}, function() {
		
	}).click(function(){return false;});
	// Hide all collection groups
	$(".collections-alpha").hide();
	//Show first collection group and make the first collection nav item selected
	$("#shop-collection div:first").show();
	$("#collections-alpha-menu a:first").addClass("active");
	$('#why-choose .module-content a').cluetip({local:true,arrows:true,cursor:'pointer'});
});