/*
	Irving Greisman Consulting
	http://www.igcsf.com
	
	Title      : common.js
	Version    : 1.0
	Released   : December 26, 2010
	Description: Javascript for html files
*/

var g_szFooterText = "Copyright &#169; 2011 William W Fay DDS, All Rights Reserved";
isiPad = navigator.userAgent.match(/iPad/i) != null;

// When the document is ready, perform the startup stuff
$(document).ready(function(){
	$("#divCopyRight").html (g_szFooterText);
});

