	Cufon.replace('h1, h2, h3, .cufon', { hover: true, fontFamily: 'myFont' });
	Cufon.replace('h2.shadow', {hover: true, fontFamily: 'myFont',textShadow: '#539abe 1px 1px'});
	Cufon.replace('h2 em', {hover: true, fontFamily: 'myFont',textShadow: '#1f2c33 1px 1px'});
	
	jQuery(document).ready(function(){
	jQuery("img.rollover").hover(function(){
		this.src = this.src.replace("_off","_on");
		}, function(){
			this.src = this.src.replace("_on","_off");
		});
	});

	jQuery(document).ready(function(){
		jQuery(".scroll").click(function(event){
			event.preventDefault();
			var full_url = this.href;
			var parts = full_url.split("#");
			var trgt = parts[1];
			var target_offset = jQuery("#"+trgt).offset();
			var target_top = target_offset.top;
			jQuery('html, body').animate({scrollTop:target_top}, 500);
		});
	});
	
	


	function initOverLabels () {
	 
	  var labels, id, field;
	 
	  // Set focus and blur handlers to hide and show 
	  // LABELs with 'overlabel' class names.
	  labels = document.getElementsByTagName('label');
	  for (var i = 0; i < labels.length; i++) {
		
		if (labels[i].className == 'overlabel') {
	 
		  // Skip labels that do not have a named association
		  // with another field.
		  id = labels[i].htmlFor || labels[i].getAttribute('for');
		  if (!id || !(field = document.getElementById(id))) {
			continue;
		  }
	 
		  // Change the applied class to hover the label 
		  // over the form field.
		  labels[i].className = 'overlabel-apply';
	 
		  // Hide any fields having an initial value.
		  if (field.value !== '') {
			hideLabel(field.getAttribute('id'), true);
		  }
	 
		  // Set handlers to show and hide labels.
		  field.onfocus = function () {
			hideLabel(this.getAttribute('id'), true);
		  };
		  field.onblur = function () {
			if (this.value === '') {
			  hideLabel(this.getAttribute('id'), false);
			}
		  };
	 
		  // Handle clicks to LABEL elements (for Safari).
		  labels[i].onclick = function () {
			var id, field;
			id = this.getAttribute('for');
			if (id && (field = document.getElementById(id))) {
			  field.focus();
			}
		  };
	 
		}
	  }
	};
	 
	function hideLabel (field_id, hide) {
	  var field_for;
	  var labels = document.getElementsByTagName('label');
	  for (var i = 0; i < labels.length; i++) {
		field_for = labels[i].htmlFor || labels[i].getAttribute('for');
		if (field_for == field_id) {
		  labels[i].style.textIndent = (hide) ? '-1000px' : '0px';
		  return true;
		}
	  }
	}
	 
	window.onload = function () {
	  setTimeout(initOverLabels, 50);
	};
