$(document).ready(function() {
		$('#drwebtext').css({ opacity: 0 });	   
        $('#drweb').hover(function() { 
 			$('#drwebtext').stop().animate({ opacity: 1 }, 300);
							}, function() { 
 			$('#drwebtext').stop().animate({ opacity: 0 }, 300);
					 });


		

});