jQuery(window).load(function() {
    jQuery('#slider').nivoSlider({
		effect:'random', //Specify sets like: 'fold,fade,sliceDown'
        slices:15,
        animSpeed:500, //Slide transition speed
        pauseTime:5000,
        startSlide:0, //Set starting Slide (0 index)
        directionNav:true, //Next & Prev
        directionNavHide:true, //Only show on hover
        keyboardNav:true, //Use left & right arrows
        pauseOnHover:true //Stop animation while hovering
	});
});

jQuery(document).ready(function($) {
	$('#sidebar ul a').hover(
		function () {
			$(this).animate({color: '#fff'}, 'fast');
			$(this).animate({backgroundColor: '#a75a2c'}, 'fast');
		},
		function () {
			$(this).animate({color: '#333'}, 'fast');
			$(this).animate({backgroundColor: '#FAF4EA'}, 'fast');
		}
	);
	$('.menu-footer ul a').hover(
		function () {
			$(this).animate({color: '#fff'}, 'fast');
			$(this).animate({backgroundColor: '#a75a2c'}, 'fast');
		},
		function () {
			$(this).animate({color: '#333'}, 'fast');
			$(this).animate({backgroundColor: '#fff'}, 'fast');
		}
	);
});
