$( document ).ready( function(){


	$('.picture-image img').hover(
		function(){
			$(this).animate({ 'top': '-30px', 'left': '-35px', 'width':'290px', 'height' : '174px' });
		},
		function(){
			$(this).animate({ 'top': '0', 'left': '0', 'width':'120px', 'height' : '72px' });
		}
	);	
	
});
