$(document).ready(function(){
	$("div.block div").hide();
	$("div.block").mouseover(function(){
		$("div",this).show();
	}).mouseout(function(){
		$("div",this).hide();
	});
});

function textSize(size) {
	iframe = document.getElementById('korenFrame');

	window.korenFrame.changetextSize(size);
	
	
	$("#pageContainer").removeClass();
	$("#pageContainer").addClass(size);
	
	$("#contentDiv").removeClass();
	$("#contentDiv").addClass(size);
}
