$(document).ready(function() {

	$(".galleryItem a").lightBox();
	$("#homeright .row").click(function() {
		window.location = $("h3 a", this).attr("href");
	}).mouseenter(function() {
		$(this).css({backgroundColor: "#111", cursor:"pointer"});
	}).mouseleave(function() {
		$(this).css("background", "none");
	});

});
