/**
 * @author Bilal Cinarli
 * @copyright 2010 - ICON Perception Managemet Co.
 * @company ICON Perception Managemet Co.
 * @email contact@icon-pm.com
 * @web http://www.icon-pm.com
 * @project qaswlasq
 * @file 
 * @version 
 * @created 2010.1.6 14:8
 * @modified 2010.1.6
 * @modifier Bilal Cinarli
**/

$(function(){
    
    var label = $('label[for="s"]');
    var search = $('#s');
    
    search.focus(function(){
       label.hide(); 
    });
    
    search.blur(function(){
       if($(this).val() == ''){
            label.show();
       }
    });
});
