$(document).ready(function() { var searchbox = $('#searchbox'); if (searchbox.attr("value") == "") { searchbox.attr("value","Search products"); searchbox.addClass("empty"); } searchbox.focus( function(){ $(this).addClass("active"); if ($(this).attr("value") == "Search products") { $(this).attr("value", ""); searchbox.removeClass("empty"); } }); searchbox.blur( function(){ $(this).removeClass("active"); if ($(this).attr("value") == "") { searchbox.attr("value","Search products"); searchbox.addClass("empty"); } }); if ($('#bubble').length) { $('#bubble').css("visibility","visible"); $('#bb_close, #bb_cont').click( function() { $('#bubble').fadeOut('slow'); return false; }); setTimeout(function(){ $('#bubble').fadeOut('slow'); }, 5000 ); } });