// adds the url of interior pages to the "send this site to a friend" if javascript is enabled 

var fullUrl = {
	ready: function () {	
	
	var url = window.location;
	
		 $('div#sendsitebtn a').remove();
		 $('div#sendsitebtn').html(
				"<a href='mailto:?subject=Extreme Cosmetic Dentistry&body=%0ATake a look at this website showcasing the Cosmetic Dentistry work of Dr. Sam Muslin,%0A%0A" + url + "' >"
		 );
	}
};
$(document).ready(fullUrl.ready);			
