jQuery(document).ready(function($){

	// Using the load AJAX method to fetch the subscriber markup
	// from subscriber_count.php:
	
	$('#social-nav').load('http://sethsandler.com/wp-content/themes/child/socialcount/subscriber_count.php',function(){
													
		// Once loaded, convert the title attributes to tooltips
		// with the tipTip jQuery plugin:
		
		$('.subscriberStats div').tipTip({defaultPosition:'top', delay: 0, fadeIn: 0});
	})
	
});

