$(document).ready(function() {
	$("#header #navigation ul li").hover(function() { //Hover over event on list item
		$(this).find("a.top").css({'background' : 'url(https://www.allurehost.com/images/bg_submenu.png) no-repeat', 'color' : '#333'}); //Add background color and image on hovered list item
		$(this).find("div.submenu").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).find("a.top").css({'background' : 'none', 'color' : '#CCC'}); //Ditch the background
		$(this).find("div.submenu").hide(); //Hide the subnav
	});
	$("#header #navigation ul li.large").hover(function() { //Hover over event on list item
		$(this).find("a.top").css({'background' : 'url(https://www.allurehost.com/images/bg_submenu_large.png) no-repeat', 'color' : '#333'}); //Add background color and image on hovered list item
		$(this).find("div.submenu").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).find("a.top").css({'background' : 'none', 'color' : '#CCC'}); //Ditch the background
		$(this).find("div.submenu").hide(); //Hide the subnav
	});
	$("#promo").easySlider({		
		pause: 10000,
		controlsAfter: '<div class="clear"> </div>',
		auto: true,
		continuous: true,
		numeric: true
	});
});
