/* Author: 

*/


$(function(){
	/*Dialog popup */
	$("#dialog").dialog({ 
		autoOpen: false, title:"LEGAL STATEMENT", show: 'clip', hide: 'clip', modal: true, width: 650, height: 550
	});
	$('#dialog_link').click(function() {
		$("#dialog").dialog('open'); return false;
	});
	$("#color_switcher").click(function() {
		if ($("body").hasClass("neg")) { $("body").removeClass("neg") } else  { $("body").addClass("neg"); }
	});
});





















