$(document).ready(function(){

	$("div.placeObj").hover(
	  function () {
	    $(this).addClass("hover");
	  }, 
	  function () {
	    $(this).removeClass("hover");
	  }
	);

	$("div.placeObj").click(
	  function () {
	   document.location.href = $(this).find("a").attr("href");
	  }
	);	
});
