jQuery(document).ready(function($){
	
	$('.kwicks').kwicks({
		max : 650,
		sticky : 0,
		duration:300
	});

	$(".kwicks li").hover(function(){
		$("div.title_active", this).fadeIn(300);
		$("div.title", this).fadeOut(100);
	},function(){
		$("div.title_active", this).fadeOut(300);
		$("div.title", this).fadeIn(1000);
	});
	
});
