 
jQuery(document).ready(function() {

    // first create a table of contents holder
    jQuery('<div id="tableofcontents"><ul></ul></div>').insertAfter('h2.title');

    jQuery('.entry h3').each(function(i) {

        jQuery(this).attr('id', i);
        // test to make sure it is not the first one
        if (i > 0) {
            jQuery(this).before('<p class="back"><a href="#">Back to Top</a></p>');
        }

        jQuery('#tableofcontents ul').append("<li><a href='#" + i + "'>" + $(this).text() + "</a></li>");
 	});

	// prepend dashes to names in testimonials
	
	jQuery('p.name').prepend('-');
	
	// rotate subheads
	
	// $('#subhead').innerfade({ animationtype: 'fade', speed: 750, timeout: 2000, type: 'sequence', containerheight: '36px' }); 
	
	jQuery('#subhead').cycle('fade');
	
	


});


