$(document).ready(function(){

$.getScript("includes/js/jquery.validate-contact-form.js");

function fix_height(){
$("#site_container").css("height", $(document).height()+"px");
}

$("#flowpanes").scrollable({size: 1, clickable: false}).circular();

fix_height();

$(window).resize(function(){
	fix_height();
});


});

function load_page(page){
	$("#content").html("<div id=\"loading\">Loading...</div>");
	$.get("pages/"+page+".html", function(page_content){
		$("#content").html(page_content);
		$("#flowpanes").scrollable({size: 1, clickable: false}).circular();
		if(page=="contact"){
			$.getScript("includes/js/jquery.validate-contact-form.js");
		}
	});
}

