$( function() {
	$( '.submenu-container a.submenu-trigger' ).hover( 
		function() {
			$( '.submenu-overall', $(this).parent() ).animate({ height:$('ul', $(this).parent() ).height() + 400}, {queue:false, easing:'swing', duration:'500'});
			$( $(this).parent() ).addClass( 'selected' );
		},
		function() {
			$( '.submenu-overall', $(this).parent() ).animate({ height:'0px'}, {queue:false, easing:'swing', duration:'500'});
			$( $(this).parent() ).removeClass( 'selected' );
		} );
	$( '.submenu-overall' ).hover(
			function() {
				$(this).animate({ height:$('ul', this).height() + 400}, {queue:false, easing:'swing', duration:'500'});
				$( $(this).parent() ).addClass( 'selected' );
			},
			function() {
				$( '.submenu-overall', $(this).parent() ).animate({ height:'0px'}, {queue:false, easing:'swing', duration:'500'});
				$( $(this).parent() ).removeClass( 'selected' );
			}
	);
} );

$( window ).load(function() {
    $( '.submenu-overall').not( ':eq(0)').each( function() {
    	$( this ).css( 'left', ( ( parseInt( $( $( this ).parent()).width() ) / 2) - ( parseInt( $( this ).css( 'width' ) ) / 2 ) ) );
    } );
});
