$(document).ready(function() {
	
	//Share this link functionality
    var pathname = window.location.pathname;
	$('a.shareThis').attr("href","mailto:?Subject=Check%20Out%20Motion%20Stability!&Body=I%20found%20this%20interesting%20at%20Motion%20Stability:%20\n\n" + pathname);
	
	//Random Testimonial Selection
	var path = 'assets/testimonials/';
	var maxtestimonial=8;//Max Number of Testimonials (Files Exist)
	var randomnumber=Math.floor( Math.random() * maxtestimonial );
	randomnumber = randomnumber + 1;
	$('#testimonial').load( path + randomnumber + '.html', function() {});
	
});

