$(document).ready(function() {

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

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

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

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

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


})

