var origInnerHTML = "";
var nextInnerHTML = "";
var speed = 100;

$(document).ready(function(){
		// attach events
	$("#frame-banners-container .banner").mouseenter(function(){showRollover(this, true);});
	$("#frame-banners-container .banner").mouseleave(function(){showRollover(this, false);});
	
	origInnerHTML = $("#frame-main-container").html();
});

function showRollover(obj, show) {
	if (show == true) {
		nextInnerHTML = $("#"+$(obj).attr("id")+"-rollover").html();
		$("#frame-main-container").addClass("isRollover");
	} else {
		nextInnerHTML = origInnerHTML;
		$("#frame-main-container").removeClass("isRollover");
	}
	
	if ($("#frame-main-container").html() != nextInnerHTML) {
/*
		$("#frame-main-container").fadeOut(speed, function(){
			$("#frame-main-container")
				.html(nextInnerHTML)
				.fadeIn(speed);}
		);
*/

		$("#frame-main-container").html(nextInnerHTML);
	}
}
