
function initMenu() {
  $('.contComp').hide();
  
  $('.contComp').width(920);
  
   $('.intro').slideToggle('slow');	
  
  $('.linkComp').click(
    function(event) {
		event.preventDefault();
		if( $(this).css("background-color") !=  'rgb(88, 89, 91)')
		{
			$(this).css("background-color",'rgb(88, 89, 91)');
		}
		else
		{
			$(this).css("background-color",'rgb(0,145,199)');
		}


		$(this).next(".contComp").slideToggle('slow');	
      }
    );
  }
$(document).ready(function() {initMenu();});
