

$(function(){

	//font replacement
	Cufon.set('fontFamily', 'Futura Std').replace('h2')('h3')('h4');
	//Cufon.set('fontFamily', 'Futura Std Medium').replace('h4'); //500
	Cufon.set('fontFamily', 'Futura Std Bold').replace('.lang-selection-can');
	Cufon.now();
	
	//populate current year (footer - copyright)
	$('.current-year').text((new Date).getFullYear());
	
	//hide noscript (ie)
	$('noscript').hide();
	
	//initiate all new window links
	$('.new-win').click(function(){
		var x = $(this).attr('href');
		$(this).attr({ 'href' : 'javascript:void(0);' });
		window.open(x, 'hihatwin');	
	});
	
	$('#selCountry').change(function(){
		if($(this).val() === 'CAN'){
			$('.lang-selection-can').fadeIn();
		}else{
			window.location = $(this).val();	
		}

		
		
	});
	
})//domready
