Cufon.replace('h1,h2,h3,h4,h5,h6,span.redemp,.aemenu a,div.componentheading'); 
Cufon.replace('#header .right .slogan, #header .right .text, #header .right .phone, .sidebar h2', {
	textShadow: 'rgba(255,255,255,0.5) 1px 1px'
});

$(document).ready(function(){

	$('li:last-child').addClass('last');
	$('#nav li:first-child').addClass('first');
	$('#nav li').hover( function(){
		$(this).addClass('hover');
		$(this).find('ul').slideDown('fast').show();
	},
	function(){
		$(this).removeClass('hover');
		$(this).find('ul').slideUp(150);
	});

	$('box:last-child').addClass('last');
	
	$('.home ul.aemenu li').eq(1).addClass('second');
	$('.home ul.aemenu li').eq(2).addClass('third');
	$('.home ul.aemenu li').eq(3).addClass('fourth');
	
	// Interior Image Swap
	$('.pageFeatured .featuredImages img').hover(function(e){
		var src = $(this).attr('src');
		var newsrc = src.replace('-sm','');
		$('.featuredPicture img').attr('src', newsrc);
	});
	// Center Interior Thumbnails
	if ($('.pageFeatured .featuredImages ul').length) {
		var ulSize = $('.pageFeatured .featuredImages ul > li').size(); 
		if (ulSize == 2){
			$('.pageFeatured .featuredImages ul').css('margin-left','65px').css('width','335px');
		} else if (ulSize == 1){
			$('.pageFeatured .featuredImages ul').css('margin-left','140px').css('width','260px');
		} 
	}	
	
	// Innerfade
	if ($('#banner_rotation').length) {
		$('#banner_rotation').innerfade({ 
			speed: 'slow', 
			timeout: 6000, 	
			type: 'sequence', 
			containerheight: '423px' 
		}); 
	}


}); // doc.ready
