$(function() {

var clickHandler = function(name, url) {

$(name).live('click', function() {
							   
$("#content").css("border-top","1px solid #BFAE60");
$("#content").css("border-bottom","1px solid #BFAE60");

$('#content-inner').fadeTo('slow', 0);

$(this).oneTime(1000, function() {

$('#content-inner').load(url);

$(this).oneTime(2000, function() {

$('#content-inner').fadeTo('slow', 1); 

});

 });

});

}
clickHandler('#work', '/sunroom.html');
clickHandler('#about', '/about.html');
clickHandler('#contact', '/contact.html');
clickHandler('#hearth', '/hearth.html');
clickHandler('#sunroom', '/sunroom.html');
clickHandler('#bedroom', '/bedroom.html');
});