$(document).ready(function(){
  $('.leftcontent').each(function(){
    page = $(this).attr('rel');

    switch (page){
      case 'index':
        $(this).css('background','#32406B');
      break;
      
      case 'who':
        $(this).css('background','#7B877B');
      break;
      
      case 'what':
        $(this).css('background','#ADC585');
      break;
      
      case 'why':
        $(this).css('background','#5366BF');
      break;
      
      case 'where':
        $(this).css('background','#179FBF');
      break;
    
      case 'how':
      case 'when':              
        $(this).css('background','#773D50');
      break;
      
      case 'casestudy':
        $(this).css('background','#9C8B9F');
      break;
      
    }  
  });
  
  var rheight = $('.rightcontent').height();
  var lheight = $('.leftcontent').height();
  
  if(rheight > lheight) {
    $('.leftcontent').height(rheight);  
  }
  if(rheight < lheight) {
    $('.rightcontent').height(lheight);  
  }
  
});
