function makeTextPlaceholders()
{
    $input = $("input[type=text]");
    $input.each(
        function()
        {
            var $this = jQuery(this);
            this.placeholderVal = $this.attr("placeholder");
            $this.val(this.placeholderVal);
            $this.css("color", "#6D6D6D");
        }
    )
    .bind("focus", function(){
        var $this = jQuery(this);
        var val = $.trim($this.val());
        if(val == this.placeholderVal || val == "")
        {    $this.val(""); $this.css("color", "#333"); }
        
    })
    
        .bind("blur", function(){
        var $this = jQuery(this);
        var val = $.trim($this.val());
        if(val == this.placeholderVal || val == "")
        {    $this.val(this.placeholderVal);$this.css("color", "#6D6D6D"); }
    })
}
function makeSearchPlaceholders()
{
    $input = $("input[type=search]");
    $input.each(
        function()
        {
            var $this = jQuery(this);
            this.placeholderVal = $this.attr("placeholder");
            $this.val(this.placeholderVal);
        }
    )
    .bind("focus", function(){
        var $this = jQuery(this);
        var val = $.trim($this.val());
        if(val == this.placeholderVal || val == "")
        {    $this.val("");        }
        
    })
    
        .bind("blur", function(){
        var $this = jQuery(this);
        var val = $.trim($this.val());
        if(val == this.placeholderVal || val == "")
        {    $this.val(this.placeholderVal);        }
        
    })
}


