$(document).ready(function(){

    /**
     * funciton for the toggleEffect
     */
    if ( $('.toggleLink').length != 0 ) {
        $('.toggleLink').click(function(ele){
            $(this).parent().siblings().find('.toggleContent').slideUp('slow');
            $(this).next().slideToggle('slow');
            return false; 
        });
    }
    
    
});
  
  
  
