/**
 * search form text removal
 *
 * @author mrKelly
 * @classDescription This clears the text "Search" from search boxes when users clicks in the box..
 **/

mdp.app.clearSearchForm = function(){
    /* ---[ CLASS VARIABLES ]--- */

    /* public */

    /* private */
    var y;

    /* ---[ CONSTRUCTOR ]--- */
    function init(){

	/* initialization code */
	setupEventListeners();

    }

    /* ---[ PUBLIC METHODS ]--- */

    /* ---[ PRIVATE METHODS ]--- */

    /* ---[ EVENT LISTENERS ]--- */
    function setupEventListeners(){

         if ($('nvbsrchtxt')){
            $('nvbsrchtxt').addEvent('focus', function(){
                if($('nvbsrchtxt').value == 'Search') $('nvbsrchtxt').value = '';
            });
        }
    }

    /* ---[ RUN ]--- */
    init();
};

window.addEvent('domready', function(){
    mdp.ClearSearchForm = new mdp.app.clearSearchForm();
});
