$(document).ready(function() {
	  $(".roompromo_panel").hover(
	  function () {
		$(this).stop().animate({
			top: '-200px'
		  }, 300, function() {
			// Animation complete.
		  });
	  }, 
	  function () {
		$(this).stop().animate({
			top: '-0'
		  }, 300, function() {
			// Animation complete.
		  });
	  }
	);
});
