$(document).ready(function()
{
	$("#divHeader").load("header.html");
	
	$("#divFooter").load("footer.html");

	

});








$(".rollover").live("mouseover", function(){
 		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
});

$(".rollover").live("mouseout", function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
});

