// JavaScript Document
function highlightThumb(object) {
	$("li > a > img").removeClass("selected_image");
	$(object).animate({opacity: "0.2"});
	$(object).animate({opacity: "1.0"});
	$(object).addClass("selected_image");
}
function clearLeftTop() {
	$("#left-top-content").html("");
}
function loadLeftTop(page) {
	$("#left-top-content").hide();
	$("#left-top-content").load(page);
	$("#left-top-content").fadeIn(2000);
}
function loadRight(page) {
	$("#right").hide();
	var srcHTML = $(page).html();
	$("#right").html(srcHTML);
	$("#right").fadeIn(1000);
}
