// jQuery Code
$(document).ready(function(){
	// onLoad() runs here.
	$("#menu").tabs({fxFade: true,
		onClick: function(anchor, div, close) {
			//$(div).empty();
			//$(div).load("get-content.php", {page: anchor});
			//alert(div + " " + anchor);
			//addReflections();
			return true;
		}
	});
	
	//$("#menu").tabs({fxFade: true});
	
	// Dynamic Menus
	//$("#main").load("get-content.php", {page: 'index.php#main'});
	//$("#about").load("get-content.php", {page: 'index.php#about'});
});