$(document).ready(function(){
	$('.post-thumb').bind('mouseover', function(){
		$(this).addClass('post-thumb-hover');
	}).bind('mouseleave', function(){
		$(this).removeClass('post-thumb-hover');
	});
});
