jQuery(document).ready(function($){ //fonts Cufon.replace('h1 a', { hover: true }); Cufon.replace('h2 a', { hover: true }); Cufon.replace('h1 span, h2, #fbComments p'); //menu $("#social-icons a") .bind("mouseover focus", function(){ $(this).parent().css({ opacity: 1 }); }) .bind("mouseout blur", function(){ $(this).parent().animate({ opacity: .9 }, 600); }) .parent().css({ opacity: .9 }); //buttons $("button, .submit input") .bind("mouseover focus", function(){ $(this).addClass("hover"); }) .bind("mouseout blur", function(){ $(this).removeClass("hover"); }); //sidebar $("#sidebar-topics a:odd").css({ float: 'right' }); });