$(document).ready(function() { 
	$("#homeMessageOK").click(function() { 
		$("div.homeMessagePopup").fadeOut(300);
	});
	
	$("div.imageSection").hover(function() {
		$(this).children("div.imageLabel").animate({ 'top':'195px' }, 300);
	}, function() {
		$(this).children("div.imageLabel").animate({ 'top':'220px' }, 300);
	});
});
