$("#header_mainnav a:not(.active)").hover(function() {
	$(this).stop().animate({color: "#810020", paddingBottom: "22px", opacity: "1"}, 300); 
},function() { 
	$(this).stop().animate({color: "#ff0000",paddingBottom: "32px", opacity: ".5"}, 300); 

});

function equalColumns(big, small){
	big_height = $(big).height();
	small_height = $(small).height();
	
	if(big_height < small_height){
		b = small;
		s = big;
	}else{
		b = big;
		s = small;
	}
	
	var dHeight = $(b).css('height');	
	$(s).css('height', dHeight);
}

$("ul.subNav li:not(.active)").hover(function() {
	$("span.slider",this).stop().animate({width:"175px"}, 300); 
},function() { 
	$("span.slider",this).stop().animate({width:"150px"}, 300); 

});



