jQuery.noConflict();
jQuery(document).ready(function() {
jQuery("#topbox1").hover(
								 
  function () {
	 
	 jQuery("#topbox1 .topspacer").animate({"marginTop": "-145px"}, "fast");

  },
  function () {
    jQuery("#topbox1 .topspacer").animate({"marginTop": "0px"}, "fast");
  }
);

jQuery("#topbox2").hover(
								 
  function () {
	 
	 jQuery("#topbox2 .topspacer").animate({"marginTop": "-145px"}, "fast");

  },
  function () {
    jQuery("#topbox2 .topspacer").animate({"marginTop": "0px"}, "fast");
  }
);

jQuery("#topbox3").hover(
								 
  function () {
	 
	 jQuery("#topbox3 .topspacer").animate({"marginTop": "-145px"}, "fast");

  },
  function () {
    jQuery("#topbox3 .topspacer").animate({"marginTop": "0px"}, "fast");
  }
);

jQuery("#topbox4").hover(
								 
  function () {
	 
	 jQuery("#topbox4 .topspacer").animate({"marginTop": "-145px"}, "fast");

  },
  function () {
    jQuery("#topbox4 .topspacer").animate({"marginTop": "0px"}, "fast");
  }
);

});
