

window.onload = function() {


drops();
longDiv();




}





function drops() {
	$('#menues .menu2 li').hover(
		function() {
			$('ul', this).show();
		},
		function() {
			$('ul', this).hide();
		}
	);
}





function longDiv() {
//( Longdiv is looooooooooooooooooooooooong! :] 
	/*
	if ($('.longdiv').length>0) {
		h = $('.longdiv').parent().height();
		h = h.toString() + 'px';
		$('.longdiv').css({height: h});
	}
	*/
	var max = 0;
	
	var divs = $('.longdiv, .column.alt');
	
	divs.each(function(){
		if ($(this).height() > max) max = $(this).height();
	})
	divs.height(max);
	

}



