$(document).ready(function(){
	$(function () {
		$("#content").before("<div id='header'></div>");
		$("#header").load("header.html");
		$("#content").after("<div id='footer'></div>");
		$("#footer").load("footer.html");
		setTimeout("$('#nav img').bind('mouseover', console.log(this));", 500);
	});
});


function replaceSource(element) {
	alert(element.attr('src'));
}