$(document).ready(function() {

	// load home content
	$("#content").load("content-home.htm");
	$("#header-img").attr("src", "images/header-img-home.jpg"); 

	// set link sources
	$("#link-home").click(function () { 
		$("#content").load("content-home.htm");
		$("#header-img").attr("src", "images/header-img-home.jpg"); 		
	});
	$("#link-about").click(function () { 
		$("#content").load("content-about.htm"); 
		$("#header-img").attr("src", "images/header-img-about.jpg"); 
	});
	$("#link-testimonials").click(function () { 
		$("#content").load("content-testimonials.htm"); 
		$("#header-img").attr("src", "images/header-img-testimonials.jpg"); 
	});
	$("#link-weddings").click(function () { 
		$("#content").load("content-weddings.htm"); 
		$("#header-img").attr("src", "images/header-img-weddings.jpg"); 
	});
	$("#link-portraits").click(function () { 
		$("#content").load("content-portraits.htm"); 
		$("#header-img").attr("src", "images/header-img-portraits.jpg"); 
	});	
	
});
