function ShowIndexImage(thisImage){
	var newImage = "<img src="+thisImage+" />";
	
	document.getElementById("divIndexImage").innerHTML = newImage;
}

function frameLoaded(thisFrame) {
	$('#FRAME1').contents().find('.bizInfo').hide();
	$('#FRAME1').contents().find('.biz_title').click(function () {
		$(this).parent('div').find('.bizInfo').toggle();
	});
}

