$(function(){
	$('#mi').nivoSlider();
        $('#subnav ul li').hover(function(){
            $(this).css({backgroundColor:'#E3BB01',color:'#fff'});
            $(this).children('span').css('color','#A51A1A');
        }, function(){
            $(this).css({backgroundColor:'#A51A1A'});
            $(this).children('span.big-text').css('color','#FFD966');
            $(this).children('span.small-text').css('color','#FFD966');
        });
})
