$(document).ready(function(){





$('div.exhibition').hover(

function(){

$(this).css("margin-right","30px");
$(this).find('div.galleryname').css("color","#000"); }, 

function(){

$(this).css("margin-right","63px");
$(this).find('div.galleryname').css("color","#000"); }

);







});

