$(function() {						
	$(".itemThumbEdge").each(function() {
		$(this).hover(function() {
			$(this).css({
				"-webkit-transform": 'rotate(' + (Math.floor(Math.random()*10)-5) + 'deg) scale(1.05)',
			});
		}, function() {
			$(this).stop().css({
				"-webkit-transform": 'rotate(0) scale(1)',
			})
		});
	});
});

$(function() {						
	$(".h2").each(function() {
		$(this).hover(function() {
			$(this).css({
				"-webkit-transform": 'rotate(' + (Math.floor(Math.random()*10)-5) + 'deg) scale(1.05)',
			});
		}, function() {
			$(this).stop().css({
				"-webkit-transform": 'rotate(0) scale(1)',
			})
		});
	});
});

$(function() {						
	$(".h3").each(function() {
		$(this).hover(function() {
			$(this).css({
				"-webkit-transform": 'rotate(' + (Math.floor(Math.random()*10)-5) + 'deg) scale(1.05)',
			});
		}, function() {
			$(this).stop().css({
				"-webkit-transform": 'rotate(0) scale(1)',
			})
		});
	});
});