var currpage
$(document).ready(function() {
	
	
	$(".contentswitch").click(function(){
		var whatcontent = $(this).attr('class').split(' ').slice(-1);
		if(whatcontent=='carousel'){
			updateurl=whatcontent+'.php';
		}
		else{
			updateurl=whatcontent+'.htm';
		}

		currpage=whatcontent;
		$("#Buffer").load(updateurl, contentloaded);
        $("#contentdiv").fadeOut(1);
		return true;
	});


});
function loadContact(){

		var updateurl='contactus.htm';
		var currpage='contactus';
		$("#Buffer").load(updateurl, contentloaded);
        $("#contentdiv").fadeOut(1);
}
function contentloaded(response, status, request) {


    var stringtag = $('string', request.responseXML);

    $("#contentdiv")[0].innerHTML = $("#Buffer")[0].innerHTML;
	$("#Buffer")[0].innerHTML="";
    $("#contentdiv").fadeIn(1000);
	
}

