$(document).ready(function(){
  var clouds = ['company','services','people','careers','projects','contact'];
  var wind = 400;
  jQuery.each(clouds, function(){
    var i =this;
    $('#'+i+'_cloud > p').hide();
    $('#'+this).hover(
      function(){
        if($('#company > a').attr('class')=='hover' && i!='company'){
          $('#company_cloud > p').fadeOut(wind);
          $('#company_cloud').fadeOut(wind);
          $('#company > a').attr('class','');
        }
        $('#'+i+'_cloud > p').fadeIn(wind);
        $('#'+i+'_cloud > *').attr('style','cursor:pointer;').click(function(){
          window.location = $('#'+i+' > a').attr('href');
        });
        $('#'+i+'_cloud').fadeIn(wind);
        $('#'+i+'> a').attr('class','hover');
      },
      function(){
        $('#'+i+'_cloud > p').fadeOut(wind);
        $('#'+i+'_cloud').fadeOut(wind);
        $('#'+i+'> a').attr('class','');
      }
    );
  });
  $('#company_cloud > p').show();
  $('#company_cloud').show();
  $('#company > a').attr('class','hover');
});

