var $j = jQuery.noConflict();

/*Accordion read more*/
$j(document).ready(function() {
      $j(".moreInformation").hide();
      $j(".readMore").addClass('linkLike');
      $j(".readMore").toggle(function()
	 {
	 $j(" + .moreInformation",this).slideDown('slow');
	 },
	 function()
	 {
	 $j(" + .moreInformation",this).slideUp('slow');
	 }
	 );

      /*Some style rules for ie*/
      $j('#content section:last-child, #main section :last-child, #main section .indented :last-child, #main form :last-child').addClass('last-child');
      });

