$(function() {
	$('div.nav_wrap ul li a').each(function() {
	if($(this).text().length > 16) {
		$(this).addClass("twoLine");
		$(this).parent().addClass("twoLine");
	}
	else {
		$(this).addClass("oneLine");
	}	
	});	
	$('div.nav_wrap ul li ul li a').removeClass("twoLine").removeClass("oneLine");
	$('div.nav_wrap ul li ul li').removeClass("twoLine").removeClass("oneLine");
});

$(function() {
	var contentHeight = $('.left65').height();
	if (contentHeight > $('.right35').height()) 	$('.right35 .content').height(contentHeight-200);
	if ($('.right35 .content').height() < $('.zoneMain').height() - 491)
		$('.right35 .content').height($('.zoneMain').height() - 491);
	contentHeight = $('.right65').height();
	if (contentHeight > $('.left35').height())    $('.left35 .content').height(contentHeight-200);
	if ($('.left35 .content').height() < $('.zoneMain').height() - 491)
		$('.left35 .content').height($('.zoneMain').height() - 491);
	$('.newsSummary:last').children('.hr').hide();
	$('.link:last').children('.hr').hide();
});
