$(document).ready(function() {
	$('div.reference_frame img').mouseover(function(){
		$(this).stop().animate(
			{width: 265,height: 230, left:0,bottom:25},200
		);
	});
	
	$('div.reference_frame img').mouseout(function(){
		$(this).stop().animate(
			{width: 245,height: 212,left:10,bottom:35},200
		);
	});
});
