$(document).ready( function(){
	$( '.navigation-general li' ).hover( function() {
		$( this ).children( 'ul' ).show();
		$( this ).children( 'a' ).addClass( 'current' );
	}, function() {
		$( this ).children( 'ul' ).hide();
		$( this ).children( 'a' ).removeClass( 'current' );
	});
});
