$('document').ready(function(){
	 var reset = {backgroundColor: "", color:""};
	
	$('li', '#nav').hover(function(){
	    reset['backgroundColor'] = $(this).find('a').css('backgroundColor');
	    reset['color'] = $(this).find('a').css('color');
		$(this).find('a').css({backgroundColor:'#C9DABD', color:'blue'});
	}, function(){
	    $(this).find('a').css({backgroundColor:reset['backgroundColor'], color:reset['color']});
	});
	
	$('#nav').delegate('li','click', function(event){ document.scrollTo($(event.target).attr('href')); return false;});
	
	$("#featured_section").loopedSlider();
});



