$(function()
{
	var total = $('#slider img').length;
	var rand = Math.floor(Math.random()*total);
	
	$('#slider').nivoSlider({
		animSpeed: 500,
		pauseTime: 5000,
		controlNav: false,
		startSlide: rand,
	});
	
	$('#testimonial .content').hide();
	$('#testimonial').mouseover(function()
	{
		$('#testimonial .content').slideDown();
		doSlide = false;
	});
	$('#testimonial').mouseout(function()
	{
		doSlide = true;
		setTimeout('autoSlideUp()', 2000);
	});
});

function autoSlideUp()
{
	if(doSlide == true)
	{
		$('#testimonial .content').slideUp('fast');
	}
	else
	{
		setTimeout('autoSlideUp()', 2000);
	}
}
