$(document).ready(function(){

	//menu
	$("#menu ul li").hover(
		 function(){
			 if($(this).children('ul:eq(0)').is(':hidden'))
				 $(this).children('ul:eq(0)').css('display','block');
		 },
		 function(){
			 if($(this).children('ul:eq(0)').is(':visible'))
				 $(this).children('ul:eq(0)').css('display','none');
		 }
	 );

	//fix columns
	m = $("#middle").height();
	l = $("#left").height();
	if(l < 300 && m < 300)
		m = 300;
	if(l < m)
		$("#left").height(m - 10);

	h = $("#middle .article:eq(1)").html();
	if(!h || h == null){
		m = $("#middle .article:eq(0)").height();
		l = $("#left").height();
		if(l < 300 && m < 300)
			l = 300;
		if(l > m)
			$("#middle .article:eq(0)").height(l - 10);
	}		
});
