jQuery(function($){
  // Read More
  $('.textMore').hide();
  $('.fr .textMore').after('<p class="readmore"><a href="#">Suite <img src="img/global/pointer.gif" width="3" height="2" alt="pointer" /></a></p>');
  $('.en .textMore').after('<p class="readmore"><a href="#">Read More <img src="img/global/pointer.gif" width="3" height="2" alt="pointer" /></a></p>');
  
  $('div.text > p.readmore a').click(function(){
    $textMore = $(this).parents('.text').find('.textMore');
    
    if($textMore.length){
      if($('.ie').length){
        $textMore.show();
      }
      else{
        $textMore.css({opacity: '0'}).slideDown(250).fadeTo(500, 1);
      }
      
      $(this).parent().hide();
    }
    
    return false;
  });
});

/* Homepage promo resize */
function resizePromos(size,image,imgId){
  maxWidth = size;
  promoImage = new Image();
  promoImage.onload = function(){
    if (promoImage.width > maxWidth){
      document.getElementById(imgId).style.width = maxWidth;
    }else{
      document.getElementById(imgId).style.width = promoImage.width;
    }
    document.getElementById(imgId).src = image;
  }
  promoImage.src = image;
}
function showPromos(obj){
  obj.style.overflowY = 'auto';
}
function hidePromos(obj){
  obj.style.overflowY = 'hidden';
}

