function onBefore(){
	$('.activeSlide img').attr('src','http://www.tennisandtrackco.com/wp-content/themes/tennisandtrackco/images/dot.png');
}
function onAfter(){
	$('.activeSlide img').attr('src','http://www.tennisandtrackco.com/wp-content/themes/tennisandtrackco/images/dot_active.png');
}
$(document).ready(function() {
	$('#menu-primary .menu-item').each(function(index) {
    	$(this).append( "<span>"+$(this).children(':first-child').attr("title")+"</span>" );
  	});
	var desc=$("#site-description").html().replace("| done right", "<span class='c1'>| done right</span>");
	$("#site-description").html(desc);
	
    $('#nav-show').before('<div id="show-nav">').cycle({ 
		fx:     'fade', 
		speed:  'slow', 
		timeout: 7000, 
		before: onBefore,
		after: onAfter,
		pager:  '#show-nav' 
	});
	
	$('#show-nav a').html('<img src="http://www.tennisandtrackco.com/wp-content/themes/tennisandtrackco/images/dot.png" />');
	$('.activeSlide img').attr('src','http://www.tennisandtrackco.com/wp-content/themes/tennisandtrackco/images/dot_active.png');
	
	$("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',theme:'dark_square',slideshow:5000,show_title:false});
});
