$(function() {
	$.ell_headnav_init = function() {
		$('.ell_head_nav > ul > li').hover(function() {
			$(this).css({backgroundPosition:'0 1px'}).find('.a_p_menu_item').css({color:'#333333'});
			$(this).find('div').animate({opacity:1, height:$(this).find('div ul').height()}, {duration:$(this).find('div ul').height()*3, easing:'easeOutCirc', queue:false});
		}, function() {
		$(this).css({ backgroundPosition: '0 48px' }).find('.a_p_menu_item').css({ color: '#FFFFFF' });
			$(this).find('div').animate({opacity:0, height:0}, {duration:$(this).find('div ul').height()*3, easing:'easeOutCirc', queue:false});
		});
		$('.ell_head_nav > ul > li div ul li a').hover(function() {
			$(this).animate({backgroundColor:'#333333'}, {duration:250, easing:'easeOutSine', queue:false});
		}, function() {
		  	$(this).animate({backgroundColor:'#666666'}, {duration:250, easing:'easeOutSine', queue:false});
		});
	}
	
	$.ell_headfade_init = function() {
		$('.ell_imagepanel_image').innerfade({speed:1500, timeout:5000, type:'sequence', containerheight:'203px'});
		$('.ell_imagepanel_image_2col').innerfade({speed:1500, timeout:5000, type:'sequence', containerheight:'162px'});
	}	
	
	$.ell_headnav_init();
	$.ell_headfade_init();
});
















