jQuery(document).ready(function($){
   
   $('.image_box').find('img').css('width', '222px');
   
   $('.image_box').hover(function(){
   	$(this).find('img').animate({
   		width: '+=50',
   		marginTop: '-=50',
   		marginLeft: '-50'
   	}, 400);
   }, function(){
   	$(this).find('img').animate({
   		width: '-=50',
   		marginTop: '0',
   		marginLeft: '0'
   	}, 400);
   });
   
   if($('.dark_image').length > 0)
   {
   	$('.dark_image').hover(function(){
   		$(this).find('.bg').fadeIn('slow');
   	}, function(){
   		$(this).find('.bg').fadeOut('slow');
   	});
   }
   
});
