
$j(document).ready(function(){

	$j(".hoverable").hover(function() {

		$j(this).css({'z-index' : '10'});
		$j(this).find('img').addClass("hover").stop()
			.animate({
				width: '75px',
			}, 200);
		$j(this).parent().animate({
			height: '105px',
		}, 200);
		
		} , function() {
		$j(this).css({'z-index' : '0'});
		$j(this).find('img').removeClass("hover").stop()
		.animate({
			width: '50px',
		}, 400);
		$j(this).parent().animate({
				height: '70px',
			}, 400);
	});

});

