/************************************** Splendid *************************************
* Created By:		Ed Hasting-Evans
* Creation Date:	18th June 2010
* Edited ----------------------------------------------------------------------------
*      By:              On:
*      
* Description -----------------------------------------------------------------------
*      Handles some form interactions such as added/hiding text within inputs
*      Uses jQuery.
*   
* Event Handlers --------------------------------------------------------------------
*   populateElement()             	// Handles the showing and hiding of 'help' text
*   
**************************************************************************************/


/********************************** Global Variables *********************************/
$(document).ready(function(){
	populateElement('#productSearch', '');
});


/*********************************** Event Handlers ***********************************/

/****
 * Handles the showing and hiding of 'help' text in inputs
 ****/
function populateElement(selector, defvalue) {
    if($.trim($(selector).val()) == "") {
        $(selector).val(defvalue);
    }
  
    $(selector).focus(function() {
        if($(selector).val() == defvalue) {
            $(selector).val("");
        }
    });
    
    $(selector).blur(function() {
        if($.trim($(selector).val()) == "") {
            $(selector).val(defvalue);
        }
    });
 }
 

