
function generateMenu(){
	$("ul#navigationBar li").hover( 
		function() {
 		 $( this ).find( '.line-left' ).addClass( 'line-left-hover' );
		 $( this ).find( '.line-right' ).addClass( 'line-right-hover' );
		 if( $( this ).attr("className") != 'activ' ){
			$( this ).find( 'a' ).addClass( 'hover' );
		 };
		
       }, 
	   function() {
  		 $( this ).find( '.line-left' ).removeClass( 'line-left-hover' );
		 $( this ).find( '.line-right' ).removeClass( 'line-right-hover' );
		 $( this ).find( 'a' ).not( '.activ' ).removeClass( 'hover' );
		} 
	);
}

function generateTopMenu(){
	$("#navigationQuicki li").hover( 	   
		function() {
			$( this ).fadeTo("normal", 0.5 );
		},
		function() {
			$( this ).fadeTo("normal", 1 )
		}
	);
}
