jQuery(document).ready(function(){

	// Remove the NoJS flag
	$('.ClientBox').removeClass('NoJS');
	// Set mouse cursor 
	$('.ClientBox').addClass('HoverCursor');

	// Set the click value for each client box
	$('.ClientBox').click(
		function(){
			document.location.href = $(this).find('a').first().attr('href');
		}
	);
	
	$('.ClientBox').hover(
		function(){
			$(this).children('.Info').animate({top: 0},250);
		},
		function(){
			$(this).children('.Info').animate({top: 50},100);
		}	
	);

	
});