function dropDown() {
	/*---------------Config - Set wrapper div---------------*/
	this.navWrapper = "#navigation";
	this.hoverClass = "hover";
	/*-----------------------End Config----------------------*/
	$( navWrapper + " ul li a" ).mouseover( function() {
		$( this ).parent().find( "ul:hidden" ).slideDown( "fast" ).show();
		$( this ).parent().hover( function() {
			$( this ).addClass( hoverClass ); 
		}, function() {  
			$( this ).removeClass( hoverClass ); 
			$( this ).parent().find( "ul" ).slideUp( "fast" );
		} );  
	} );
};
