$(document).ready(function() {
	$('.boxgrid > .boxcaption').each( function() {
		$(this).hover(		
			function() {
			  $(this).stop();
    		  $(this).animate({top: "5px"}, 200);
		   },
		   function() {
   			  $(this).stop();
		      $(this).animate({top: "73px"}, 200);
		   }
		);
	});
	
	$('.widget > h3').each(function(){
		$(this).css('cursor', 'pointer');
		
		$(this).click(function() {
		   $('~ ul', this).slideToggle(500);
		});
	});
	
	$('.widget > ul > h3').each(function(){
		$(this).css('cursor', 'pointer');									
		
		$(this).click(function() {
			  $('~ div', this).slideToggle(500);
		});
	});
	

	my_kwicks();



	
});

function my_kwicks(){
$('.kwicks').kwicks({
		duration: 300,
		max: 243,
		spacing:  0
});
}


