$(document).ready(function(){
    // find toggle links
    var arrA = $("a[rel='toggle']").each(function(intIndex){
    // find ID of toggle objects
    var linkID = String($(this).attr('href')).substr(1, $(this).attr('href').length);
    // hide elements
    if(linkID){
      $('#'+linkID).hide();
    }
    $(this).toggle(
      function(){
        $('#normal div').hide();
        $('#'+linkID).fadeIn('slow');
      },
      function(){
        $('#'+linkID).fadeOut('fast'); 
        $('#normal div').hide();
      }
    );
  });
});
