    /**
     # mod_jv_google_weather - JV Google Weather
     # @version        1.5.x
     # ------------------------------------------------------------------------
     # author    Open Source Code Solutions Co
     # copyright Copyright (C) 2011 joomlavi.com. All Rights Reserved.
     # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL or later.
     # Websites: http://www.joomlavi.com
     # Technical Support:  http://www.joomlavi.com/my-tickets.html
    -------------------------------------------------------------------------*/    
    
    function clear(){
         $$('.text').each(function(el){
            var text = el.value;
            el.onfocus = function(){
                if(el.value == text){
                    el.value='';
                }
            };
            el.onblur = function(){
                if(el.value==''){
                    el.value = text;
                }
            };
        });
    } 
    

