function specialoffer() {
  $(".specialoffer").mouseenter(
      function () {
		$(this).next("div").show("slow");
      });
	  
   $(".specialoffer").mouseleave(
	function () {
		$(this).next("div").hide("slow");
   });
}
