window.HERNDON = {};

(function($){
	
	$(document).ready(function() {
		
		$.later(4000, this, function () {
			$("#message-yellow").fadeOut("slow");
			$("#message-red").fadeOut("slow");
			$("#message-green").fadeOut("slow");
	        $("#message-blue").fadeOut("slow");
	    }, {}, true);
		
		$( "div.instructions" ).dialog({
			autoOpen: false,
			height: 300,
			width: 350,
			modal: true
		});
		
		$( "div.legend" ).dialog({
			autoOpen: false,
			height: 510,
			width: 400,
			modal: true
		});
		
		$( ".instructions-open" ).click(function() {
			$( ".instructions" ).dialog( "open" );
		});
		
		$( ".legend-open" ).click(function() {
			$( ".legend" ).dialog( "open" );
		});
	});
	 
})(jQuery);
