$(document).ready(function(){
	$('.rotate').cycle({ 
		fx:    'fade', 
		speed: 9999999999,
		pause: 9999999999
	});
	$("label.overlabel").overlabel();
	$('#collection-nav li').hover(function() {
		$(this).children("div:hidden").show();
		$(this).addClass("hover");
	}, function() {
		$(this).children("div:visible").hide();
		$(this).removeClass("hover");
	});
	$('#why-choose .module-content a').cluetip({local:true,arrows:true,cursor:'pointer'});
});