function siteInit() {
	
	/**
	 * This is needed to extend the right and left body borders dynamically
	 * so that they extend with the text
	 */
	var textheight = 0;
	textheight = document.getElementById("content_container").offsetHeight;

	document.getElementById("right_border").style.height = textheight+"px";
	document.getElementById("left_border").style.height = textheight+"px";

}

$(document).ready(function(){
	
	jQuery(".menu_parent").click(function(e) {
		
		e.preventDefault();
		
		window.location = jQuery(this).next().contents().filter(":first").contents().attr("href");
		
	});
	
});
