$(document).ready(function(){
	
	$("#column2 div.placeholderHome").mouseover(
	  function () {
		if ($(this).hasClass("activated")) {
		}
		else {
		  $(this).stop().animate({ marginTop: "97px" }, 700);
		  $(this).stop().animate({ marginTop: "0px" }, 700);
		  $(this).addClass("activated").removeClass("deactivated");
		  /*$(this).find("img.arrowDown").stop().fadeTo("fast", 0.5);*/
		}
	  }
	);
	
	$("#column2 div.placeholderHome").mouseleave(
	  function() {
		 $("#column2 > *").removeClass("activated").addClass("deactivated");
		 $(this).stop().animate({ marginTop: "97px" }, 700);
		 /*$(this).find("img.arrowDown").stop().css("fast", 1.00);*/
	  	}
	  );
});