$(document).ready(function() {
	build_menu();
	
 	$(".tumbhail").mouseover( function() {
 		var parent = $(this).parent();
 		var classes = parent.attr("class");
 		var len = classes.length;
 		var number = classes.substring(len-1, len);
 		$('#cat'+number).show();
 		/*
 		$('#cat1 > img').css({
 			"width": "198px",
 			"height":"149px"
 		});
 		*/
    	$('#cat' + number + ' > a > img').animate({ "width": "198px", "height": "149px" }, "fast");
 	});
 	$(".bigimg").mouseout( function() {
 		$(this).hide();	
 		$("#categories > div.bigimg").hide();
 		var id = $(this).attr("id");
 		$('#' + id + ' > a > img').css({
 			"width": "132px",
 			"height":"99px"
 		});
 	});
});

function build_menu() {
	var height = Math.max($('#menu').height(),$('#text').height(),$('#container-page').height());
	height = height - 175; // minus css bottom + head height
 	$('#menu').css({
 	"height": height+"px"
 	});
 	$('#text').css({
 	"height": height+"px"
 	});
 	$('#textmar').css({
 	"height": height+"px"
 	});
 	$('#leftmar').css({
 	"height": height+"px"
 	});
}
