var Site = {

	fixLayout: function() {
	
		/* Fix tables to have even width for each columns */
		$('#main table').each(function(){
			var size = 100/($(this).find('tr')[0].cells.length);
			$(this).find('td').width(size+'%');
		});
	
		/* Fix sidebar size */
		if ($("#main").height()>(335+148)) {
			$("#submenu").height($("#main").height()-148);
		} else {
			$("#submenu").height(335);
		}
		
	}
	
};
