$(document).ready(function(){

	$('div.galleryItem').hover(function(){
		  $(this).css('background','#555');
		  $(this).css('cursor','pointer');
		},function(){
		  $(this).css('background','#333');
	});

});