jQuery, hover effect
function hoverButton() {
$('#button').hover(function(){
$(this).stop().animate( { opacity: ".6", bottom: "5px" }, 600 );
}, function(){
$(this).stop().animate( { opacity: "1", bottom: "0" }, 400 );
});
}INFO