var css_default_value=null;
var css_default=null;

function default_value(classname)
{
	$('.'+classname).each(function()
    {
        if ($(this).val() != $(this).attr("defaultValue"))
        {
            if(css_default != null)
            {
            	$(this).css(css_default);
            }        	
        }
        else
        {
            if($(this).hasClass("error_label") == true)
            {
                $(this).css({"color" : "#FF0000"});
            }
        }
    });
    $('.'+classname).bind("focusin", function()
    {
        if ($(this).val() == $(this).attr("defaultValue"))
        {
        	if(css_default != null)
            {
        		$(this).css(css_default);
            }
            $(this).val("");
        }
    });
    $('.'+classname).bind("focusout", function()
    {
        if ($(this).val() == "")
        {
        	if(css_default_value != null)
            {
        		$(this).css(css_default_value);
            }
            $(this).val($(this).attr("defaultValue"));
        }
    });
}

