$(document).ready(function(){
$("#s").focus(function(){$("#s").attr("value", "");});
 
$("#widget_rss").hover(function() {
$("#subscribe-now").stop(true, true).animate({opacity: "show", top: "-53"}, "slow");
}, function() {
$("#subscribe-now").animate({opacity: "hide", top: "-40"}, "fast");
});

$("#widget_twitter").hover(function() {
$("#pop-twitter").stop(true, true).animate({opacity: "show", top: "-53"}, "slow");
}, function() {
$("#pop-twitter").animate({opacity: "hide", top: "-40"}, "fast");
});

$("#widget_facebook").hover(function() {
$("#pop-face").stop(true, true).animate({opacity: "show", top: "-53"}, "slow");
}, function() {
$("#pop-face").animate({opacity: "hide", top: "-40"}, "fast");
});
 
});


