$(document).ready(function() {
						   
$('.kwicks').kwicks({   
       max : 250, 
	   min : 50,  
       spacing : 0,
	   duration : 600,
	   easing : 'easeInOutCirc'  
  }); 

 // Give click hand over ul.kwicks
 $("ul.kwicks li").hover(function() {
     $("body").css('cursor', 'pointer');
   },
   function() {
     $("body").css('cursor', 'default');
   });
 
 // User clicks to view a website type
 $("ul.kwicks li").click(function() {
    window.location = $(this).children("div.text").find("a").attr("href");
 });
 
});