//////////
// Main //
//////////
function jQloadFile(fileLocation) {
	$('#contentBody').empty().load(
		fileLocation,
		function() {
			$('a.lightbox').lightBox();
		}
	);
}

function showTitle(content) {
	$('#contentTitle').empty().append(content).append("<HR>");
}

function showLoading() {
	$("#contentBody").empty();
	$("#contentTitle").empty().append("Page is loading... please be patient");
}

///////////
// Dolls //
///////////
function showDolls() {
	showLoading();

	jQloadFile("dolls/index.php");
	showTitle("<div class=\"section_date\">Dolls</div>");
}


/////////////////
// Doll Houses //
/////////////////
function showDollHouses() {
	showLoading();

	jQloadFile("dollhouses/index.php");
	showTitle("<div class=\"section_date\">Doll Houses</div>");
}


//////////
// Toys //
//////////
function showToys() {
	showLoading();
	
	jQloadFile("toys/index.php");
	showTitle("<div class=\"section_date\">Toys</div>");
}
