$(window).load(function() {

	//nivo slider
	var total = $('#slider img').length;
	var rand = Math.floor(Math.random()*total);
	
	$('#slider').nivoSlider({
		startSlide:rand,
		effect:'random',
		directionNav:true, //Next &amp; Prev
		controlNav:true, //1,2,3...
		pauseTime:4500
	});
	
	/*if javascript is active, add an arrow to the More links */
	$(".more").append("<img src='/2010/images/moreArrow.gif' alt='more' class='moreArrow' />");
	
	//on click of the more class, show the #moreNav area
	$(".more").click(function() {
	
		//make this button have the active BK color
		$(this).toggleClass("activeButton");
		
		//slide down the div
		$("#moreNav").slideToggle("fast");
		
	return false;
	});

});
