$(document).ready(function(){
 // Top 5 && urgence
 $('a.LinkRIGHT').click(function(){
  $(this).attr('href', 'javascript:void(0)');
  $(this).next().toggle('medium');
 });
 // Faq Q/R
 $('div.FaqQuestion').click(function(){
  $(this).next().toggle('hight');
 });
 $('div.FaqQuestion2').click(function(){
  $(this).next().toggle('hight');
 });
});

