/**
 * 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(){

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

	/* initialization code */
	setupEventListeners();

    }

    /* ---[ EVENT LISTENERS ]--- */
    function setupEventListeners(){
        $('#nvbsrchtxt').focus( function(){
            if($('#nvbsrchtxt').val() == 'Search') $('#nvbsrchtxt').val('');
        });
    }

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

$(document).ready( function(){
    mdp.ClearSearchForm = new mdp.app.clearSearchForm();
});

