$(document).ready(function() {
	$("#topNavigation > ul").jdMenu();
	
		$("#featureList").jcarousel({
			wrap : "last",	
			animation : 1250					
		});
	




 $(function() {
	$(".accordion").accordion({
		autoHeight: false
	});
}); 





$('.toggle').hide();
  		// toggle link1 with container1
  		// using chaining for performance and ease
  		// changing html of link
  		$('.toggleLink').toggle(function(){
  		  $(this).next().slideDown('fast').removeClass('hide').preventDefault;
  		    $(this).html('Hide').addClass('toggleLinkHide');
  		  },function(){
  		    $(this).next().slideUp('fast').addClass('hide').preventDefault;
  		    $(this).html('Read the Transcript').removeClass('toggleLinkHide');
  		})





});
