jQuery(document).ready(function(){
		
	$("#subnav-services").css("-moz-border-radius","5px");
	$("#subnav-services").css("border-radius","5px");
	$("#subnav-services").css("-webkit-border-radius","5px");
	$("#subnav-team").css("-moz-border-radius","5px");
	$("#subnav-team").css("border-radius","5px");
	$("#subnav-team").css("-webkit-border-radius","5px");
	$("#subnav-partners").css("-moz-border-radius","5px");
	$("#subnav-partners").css("border-radius","5px");
	$("#subnav-partners").css("-webkit-border-radius","5px");
	
	//Subnav Services
	$("#navigation ul li a.services-a").hover(function() {
		 $("#subnav-services").stop(true, true).fadeIn('fast'); },
		 function() {
		 $("#subnav-services").stop(true, true).fadeOut('medium');
	});
	
	$("#subnav-services").hover(function() {
		 $(this).stop(true, true).show(); },
	function() {
		 $(this).stop(true,true).fadeOut('medium');
		 
	}); 
	
	//Subnav Team
	$("#navigation ul li a.team-a").hover(function() {
		 $("#subnav-team").stop(true, true).fadeIn('fast'); },
		 function() {
		 $("#subnav-team").stop(true, true).fadeOut('medium');
	});
	
	$("#subnav-team").hover(function() {
		 $(this).stop(true, true).show(); },
	function() {
		 $(this).stop(true,true).fadeOut('medium');
		 
	}); 
	
	//Subnav Partners
	$("#navigation ul li a.partner-profiles-a").hover(function() {
		 $("#subnav-partners").stop(true, true).fadeIn('fast'); },
		 function() {
		 $("#subnav-partners").stop(true, true).fadeOut('medium');
	});
	
	$("#subnav-partners").hover(function() {
		 $(this).stop(true, true).show(); },
	function() {
		 $(this).stop(true,true).fadeOut('medium');
		 
	}); 
	
});
