$(document).ready(function() {   
    if(window.Page_IsValid){
	    $('.errorWrapper').hide();
    }
    $('.trigger').click(function() {
    if ($(this).parents('.panelWrapper').find('.errorWrapper').css('display') == 'none' && !Page_IsValid) {
            $(this).parents('.panelWrapper').find('.errorCol').fadeIn(200);
            $(this).parents('.panelWrapper').find('.errorWrapper').slideDown(200);
        }
    });

    $('.clearDefault').each(function(i) {
        $(this).focus(function() { if (this.value == this.defaultValue) this.value = ""; });
        $(this).blur(function() { if (this.value == "") this.value = this.defaultValue; });

    });
});


