jQuery(document).ready(function(){ jQuery('#sidebarsearch input').val('Enter search...'); jQuery('#sidebarsearch input').focus(function() { jQuery('#sidebarsearch input').val(''); }); jQuery('#sidebarsearch input').focusout(function() { jQuery('#sidebarsearch input').val('Enter search...'); }); }); jQuery(document).ready(function(){ jQuery('.add_to_cart_button').live('click', function() { jQuery('html, body').animate({scrollTop:0}, 'medium',function(){ jQuery('.cartHide').animate({opacity : 0},300); setTimeout(function() { jQuery('.cart-bubble-load').addClass('loading'); }, 300); setTimeout(function() { jQuery('.cart-bubble-load').removeClass('loading'); }, 2300); setTimeout(function() { jQuery('.cartHide').animate({opacity : 1},300); jQuery('.widget_shopping_cart_top').css('position','static'); }, 2300); }); }); });