﻿$(document).ready(function(){
	$("#Header").load('Header/header.html');
	$("#LeftCol").load('Menu/Menu.html');
	$("#RightCol").load('Sponsors/Sponsors.html');
	$("#Footer").load('Footer/footer.html');
	
	$(".popup").click(function(e){
		var html = $(this).attr('href');
		$("#LightBoxContent").load(html);
		$("#LightBox").show();
		e.preventDefault();
	});
	
	$(".close").click(function(e){
		$("#LightBox").hide();
		e.preventDefault();
	});
});

