$(function(){
	$('.menuLeft > ul > li > a').mouseup(function(){
		if($(this).parent().children('ul').length == 1){
			$('ul','.menuLeft').removeClass('act');
			$('a','.menuLeft').removeClass('act');
			$(this).addClass('act');
			$(this).parent().children('ul').addClass('act');			
		}else{
			document.location.href=$(this).attr('href');
		}
	});
	
	$('a','.Tabs').mouseup(function(){
		$('td', $(this).parent().parent()).removeClass('act');
		$(this).parent().addClass('act');
		var index = $('td', $(this).parent().parent()).index($(this).parent())
		$('.item','.TabDescrib').addClass('hidden');
		$('.item','.TabDescrib').eq(index).removeClass('hidden');
	});
	
	var height = 0;
	if($('#colRight').height() > height)
		height = $('#colRight').height();
	if($('#colLeft').height() > height)
		height = $('#colLeft').height();
	if($('#colCenter').height() > height)
		height = $('#colCenter').height();
	$('#colCenter').height(height);
	
});