jQuery(function(){
			jQuery('#top_nav').superfish({
				autoArrows:    false, 
				animation: {opacity:'show',height:'show'},  
				delay:100
				});
		});
		
$(document).ready(function(){

		$('#top_nav > li:not(.active)').hover(function() {
			if ($('a:first:animated', $(this)).length == 0)
				$(this).find('a:first').animate({color:"#b7464b", borderBottomColor:"#b7464b", borderBottomWidth:"15px", paddingTop:"5px", paddingBottom:"3px"},"fast");
		},
		function(){
			$(this).find('a:first').animate({color:"#fff", borderBottomColor:"#000", borderBottomWidth:"1px", paddingTop:"15px", paddingBottom:"7px"},"fast");
	});
	$('#top_nav > li.active').hover(function() {
		if ($('a:first:animated', $(this)).length == 0)
			$(this).find('a:first').animate({color:"#b7464b", borderBottomColor:"#b7464b", borderBottomWidth:"15px", paddingTop:"5px", paddingBottom:"3px"},"fast");
		},
		function(){
			$(this).find('a:first').animate({color:"#fff", borderBottomColor:"#d91e22", borderBottomWidth:"4px", paddingTop:"15px", paddingBottom:"7px"},"fast");
	});
	
});		
