$( document ).ready(function(){
	
	$( '.dropdown' ).mouseover(function() {
		
			$('.submenu').hide();
			$( this ).find('.submenu').show();
			$( this ).find('a:eq(0)').addClass( 'hover' );
		
	}).mouseout(function() {
		$( this ).find('.submenu').hide();
		$( this ).find('a:eq(0)').removeClass( 'hover' );
	});
});