function setInternalFunctions() {
	//Sideshow on the main page
	$('#mainPics').cycle({ 
		fx:    'fade', 
		speed:	2500, 
		pause:  1 
	});
	
	//Internal Clicks
// Commented section requires an argument 'tag' passed through to show what indicates the links.
//	$(tag).click(function(event){
//			 $("#content").empty();
//			 $.get($(this).attr("href") , null, function(html) { 
//				$("#content").append(html);
//				setInternalFunctions(".internal");
//			});
//			 event.preventDefault();
//		});
		
	//Photo gallery:
	tb_init('a.thickbox, area.thickbox, input.thickbox');//pass where to apply thickbox
}
$(document).ready(function(){
	//Get the header file
	$.get("header.html", null, function(html) {$("#header").append(html);});
	//Get the menu file.
	$.get("menu.html", null, function(html) {
		$("#menu").append(html);
		//setInternalFunctions("#menu a");
		$("#menu li").addClass("rounded");
		$('.rounded').corners("transparent");
	});
	//Get the content.
	var page = "main.html";
	if ($.url.param("page"))
		page = $.url.param("page") + ".html";
		
	$.get(page, null, function(html) {
		$("#content").append(html);
		setInternalFunctions();
	});
	
	
 });