$(function() {
	
	// Galley Mouse Over Effects
	$('.post .gallery ul li').mouseover(function() {
			$(this).addClass('over');
	}).mouseout(function(){
			$(this).removeClass('over');
	});
	
});
