

/* JQUERY FUNCTIONS */
$(document).ready( function () {
	Cufon.set('engine', 'canvas');
	<!-- target your element with the dom and tell what font to use -->
	Cufon.replace('#menuTop ul li a.mainNav', { fontFamily: 'Helvetica Neue LT Std', hover:true });

	<!-- target your element with the dom and tell what font to use -->
	Cufon.replace('#home_column_1 h1', { fontFamily: 'Helvetica Neue LT Std', hover:true });

	<!-- target your element with the dom and tell what font to use -->
	Cufon.replace('#home_column_2 h1', { fontFamily: 'Helvetica Neue LT Std', hover:true });
	
	<!-- target your element with the dom and tell what font to use -->
	Cufon.replace('#home_column_3 h1', { fontFamily: 'Helvetica Neue LT Std', hover:true });

	<!-- target your element with the dom and tell what font to use -->
	Cufon.replace('.redbox_outer h1', { fontFamily: 'Helvetica Neue LT Std', hover:true });
	
	
	// Enable PRINT/EMAIL features
	$("#menuTop #emailThisPage").click(function(){ //Email
												
		var SubjectLine=top.document.title;
		var BodyText='The sender of this link has forwarded the URL because of your interest in Ambassador website:\n\n'+top.document.location.href;
		
		location.href = "mailto:?SUBJECT="+escape(SubjectLine)+"&BODY="+escape(BodyText);								
	});
	$("#menuTop #printThisPage").click(function(){ //Print
		window.print();							
	});
	
	
	// VIDEOS - flashing arrow
	// NOTE: This works for audio and video in middle or RHS frame.
	// TODO: 0029 - STOP queueing of flashing PLAY buttons
	$(".videoAbstractImage a").hover(
	    function(){
	        $(this).stop().fadeTo('normal', 0.40).fadeTo('normal', 0.67).fadeTo('normal', 0.40).fadeTo('normal', 0.67);
	    },
	    function(){
	        $(this).stop().fadeTo('normal', 0.67);
	    }
	);



});
