$(document).ready(function (){
$(".slider_text2").hide(); $(".slider").hover(function(){ $(".slider_text2").fadeIn("slow"); },function(){ $(".slider_text2").fadeOut(); });
});