	Cufon.replace('h1', { fontFamily: 'FS Albert Light' });
	Cufon.replace('h2', { fontFamily: 'FS Albert Light' });
	Cufon.replace('h3', { fontFamily: 'FS Albert Light' });
	Cufon.replace('#intro strong', { fontFamily: 'FS Albert' });
	
$(document).ready(function() {

	// hover nav fix for ie6, so menus go over flash and select boxes
   if($.browser.msie && $.browser.version < 7) {
		$('#menu-05 > li').each(function(){
			$(this).prepend("<iframe src='' frameBorder='0' scrolling='0' style='position:absolute; top:77px; left:0; height:"+$(this).children('ul').height()+"px; width:187px; z-index:999'></iframe>");
		});
   		$('#menu-05 > li').hover(function() {
			$(this).addClass('sfhover');
		},function() {
			$(this).removeClass('sfhover');
		});
   }
   
   // insertion of span for link bulleting
   $('a.bulletLink').after('<span class="bulletLink"></span>');
   
   
   if($('.receiveMagazine').attr("checked")==false) {
	   $('.findMe').fadeOut(0);
   		$('fieldset.address').hide();
   }
   
   $('.receiveMagazine').click(function(){
		if($(this).is(":checked")) {
			$('fieldset.address').slideDown('slow');	
			$('.findMe').fadeIn('slow');
		}
		else {
			$('fieldset.address').slideUp('slow');	  			
			$('.findMe').fadeOut('slow');
		}								
	});
});
