﻿(function($){  
    $(document).ready(function() {
	    $("[AutoHide]").each(function() {
	        if (!isNaN($(this).attr("AutoHide"))) {
                eval("setTimeout(function() {jQuery('#" + this.id + "').hide();}, " + parseInt($(this).attr('AutoHide')) * 1000 + ");");               
	        }
        });
    }); 
})(jQuery);
