
<!--
$(document).ready(function() {
$('#toggleSection').hide();
 
$('a.toggle').click(function() {
        var id = $(this).attr('id');
	 
	 if ($('#toggleSection' + id).is(":hidden"))
               {
                    $('#toggleSection' + id).slideDown("slow");
					$('#imgArrow' + id).attr('src','http://media.studylink.com/xl/nwr/dashboard/btn-expand-1.gif');
               } else {
                    $('#toggleSection' + id).slideUp("slow");
					$('#imgArrow' + id).attr('src','http://media.studylink.com/xl/nwr/dashboard/btn-expand-2.gif');
               }
			   
        // alert(id);
     return false;
     });
 
}); 
//-->

<!--
$(function() {
	$('tr.parent')
		.click(function(){
			$(this).siblings('.child-'+this.id).toggle();
		});
	$('tr[@class^=child-]').hide().children('td');
});
//-->
