$(document).ready(function(){
    
	$(".whistle_dt").hover(function () {
      //$(this).css("background-color","#222");	
      $(".whistle_dt_info",this).show();
	  
    },function () {
    $(".whistle_dt_info",this).hide();
  	});
    


	
});