$(document).ready(function(){
    
    $("#searchKeywords").focus(function () {
         $(this).css({'background' : '#eee'});
    });
		
		$("#searchKeywords").blur(function () {
         $(this).css({'background' : '#fff'});
    });
		
		$(".tools-box ul li a").click(function () {
         $(this).css({'background' : '#fff'});
    });

	$("#browserAlert a.close").click(function () {
		$("#browserAlert").css({'display' : 'none'});													 
  });

  });
