$(document).ready(function(){
	//egalize('#sidebar','#main');
	//egalize('#sidebar','#content');
	swap();
})

function egalize(id1, id2){
	($(id1).innerHeight() > $(id2).innerHeight()) ? $(id2).height($(id1).innerHeight()): $(id1).height($(id2).innerHeight());	
}

function swap(){
	$('.menuSectiuni li').each(function(){
		$('a', this).bind('mouseover', function(){$(this).parent().css({'background': 'white'});});
		$('a', this).bind('mouseout', function(){$(this).parent().css({'background': 'none'})});	
	});	
}
