// JavaScript Document

// Custom Font
	Cufon.replace('h1');
	Cufon.replace('h2', {
		hover: true
	});
	Cufon.replace('.h3');
	Cufon.replace('.h4');
	Cufon.replace('.myFont');
//	Cufon.replace('#topNav', {
//	hover: true
//});
	Cufon.replace('.myFontShadow',{
	textShadow: '#fff -1px -1px, #000 2px 2px'
});

// scroll to top of Page

	jQuery(document).ready(function(){
		jQuery(function () {
		var scrollDiv = document.createElement("div");
		jQuery(scrollDiv).attr("id", "toTop").html("Back to Top").appendTo("body");    
		jQuery(window).scroll(function () {
				if (jQuery(this).scrollTop() != 0) {
					jQuery("#toTop").fadeIn();
				} else {
					jQuery("#toTop").fadeOut();
				}
			});
			jQuery("#toTop").click(function () {
				jQuery("body,html").animate({
					scrollTop: 0
				},
				800);
			});
		});
	});

