/**
 * @author dave
 */
$(document).ready(function()
{
	
	
    $(".sendToFriendText").focus(function(srcc)
    {
		// make the items box red.
		$(this).addClass("highLightBox");
		
        if ($(this).val() == $(this)[0].title)
        {
            $(this).removeClass("sendToFriendTextActive");
            $(this).val("");
        }
    });
    
    $(".sendToFriendText").blur(function()
    {
		// make the items box red.
		$(this).removeClass("highLightBox");
		
		
        if ($(this).val() == "")
        {
            $(this).addClass("sendToFriendTextActive");
            $(this).val($(this)[0].title);
        }
    });
 
    
    $(".sendToFriendText").blur();        
});

