﻿$(document).ready(function(){

	$("img.bouncy").hover(function(){
		$(this).stop().animate({width:'290px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	},function(){
		$(this).stop().animate({width:'100px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});

});

