$(document).ready(function(){
						
	// Custom fonts
	Cufon.replace('.HeaderText .EnhanceTwoGenericStyleOne, .MainContent h1, .RightColumn1 h2, .EventPanels h2, .EventPanel td h2, .EventPanel td h3, .EmailSubscriberPanel h2');
	Cufon.now();
	
	/* Add EventPanel div to the inside of each table cell */
	$('.EventPanels td').wrapInner('<div class="EventPanelBox"></div>');
	$('.EventPanelBox').each(function(){
		if($(this).find('a').length > 0){
			var link = $(this).find('a').attr('href');
			$(this).click(function(){
				window.location.href = link;
			}).css({'cursor': 'pointer'});
		}
	});
	
	/* Cycle between heading images */
	$('.HeaderImage').cycle({ 
	    fx:    'fade', 
	    speed:  2500 ,
		pause: true,
		slideExpr: 'img'
	 });
	
	/* Newsletter signup confirmation message */
	var referrer = document.referrer;
	var correctreferrer = referrer.indexOf('enhancecms.com')
	if(correctreferrer != -1){
		$('.NewsletterForm').replaceWith('<p>Thank you for subscribing! You will receive confirmation shortly.</p>');
	}
	
});