$(document).ready(function(){
	$('.navItem').hover(
		function(){
			$(this).addClass('navHover');
			$(this).children('.dropdownItems').slideDown(100);
		},
		function(){
			$(this).removeClass('navHover');
			$(this).children('.dropdownItems').slideUp(100);
		}
	);
	$('.expansion').hover(
		function(){
			$(this).parent('.dropdownItems').css('border-bottom-right-radius','0px');
			$(this).children('.flyoutItems').animate({width:'toggle'},{duration:100});		
		},
		function(){
			$(this).children('.flyoutItems').animate({width:'toggle'},{duration:100});		
			$(this).parent('.dropdownItems').css('border-bottom-right-radius','5px');
		}
	);
});
