// Cufon Stuff
	Cufon.replace('h1', {fontFamily: 'archer-semibold' });
	Cufon.replace('h2', {fontFamily: 'archer-semibold' });	
	Cufon.replace('h3', {fontFamily: 'archer-semibold' });
	Cufon.replace('h4', {hover: true, fontFamily: 'archer-semibold' });
	Cufon.replace('.nav', {hover: true, fontFamily: 'archer-bold' });	
	Cufon.replace('button', {hover: true, fontFamily: 'archer-bold' });		
	Cufon.replace('.tabs li', {hover: true, fontFamily: 'archer-semibold' });	
	Cufon.replace('.title', {fontFamily: 'archer-semibold' });	


// jQuery Stuff

	// ShadowBox - Modal window
	Shadowbox.init({
    	overlayOpacity:     0.8,
		viewportPadding:	5
	});
	
	// TipTip -- Tooltip
	$(function(){
		$(".tip").tipTip({maxWidth: "auto", delay: 100, edgeOffset: 10});
	});

	// Inactive Link -- fade out and strips href
	$(document).ready(function(){
		$("a.inactive").click(function () { 
			$(this).fadeTo("fast", .5).removeAttr("href"); 
	    });
	});
	
	// Cycle Plugin -- for testimonials ()saopbox)
	$(document).ready(function() {
    	$('#soapbox').cycle({
			fx:    'fade', 
    		speed:  2000,
			timeout:  6000, 
		//	random:  1,
			pause: 1		 
 		});
	});
	
	// Disables new versions of the Skype toolbar and tel no recognition
	$(document).ready(function() {
		window.setTimeout(function() {
			$('.skype_pnh_container').html('');
			$('.skype_pnh_print_container').removeClass('skype_pnh_print_container');
		}, 800);
	});
	
  
// End of jQuery Stuff






