$(document).ready(function() {
	
	// vibrate
	$("img").hover( function () {
    	$(this).effect( "shake", {times:10000, distance:1}, 10);
  	}, function () {
    	$(this).stop(true, true);
  	});
	
});

$(window).load(function() {

});
