$(document).ready(function() {
	$("#content").before("<div id='header'></div>");
	$("#header").load("header.html");
	$("#wrapper").after("<div id = 'footer'></div>");
	$("#footer").load("footer.html");
});

function replaceSource(element) {
	alert(element.attr('src'));
}

function openBrWindow(theURL,winName,features) {
	// usage:
	// <a href="#" onclick="openBrWindow('start.html', 'presentationWindow', 'width=1050, height=700')">View Presentation</a>
	window.open(theURL,winName,features);
}
