var timer;

$( document ).ready( function ()
{

	var images = new Array();
	images.push(new Array('http://www.teddyhwang.com/wp-content/themes/teddyhwang/images/hansen.jpg', 'Hansen Signs', 'http://www.teddyhwang.com/portfolio/#hansen'));
	images.push(new Array('http://www.teddyhwang.com/wp-content/themes/teddyhwang/images/esther_and_darren.jpg', 'Esther and Darren', 'http://www.teddyhwang.com/portfolio/#estheranddarren'));
	images.push(new Array('http://www.teddyhwang.com/wp-content/themes/teddyhwang/images/bgcmoncton.jpg', 'BGC Moncton', 'http://www.teddyhwang.com/portfolio/#bgcmoncton'));
	images.push(new Array('http://www.teddyhwang.com/wp-content/themes/teddyhwang/images/spheric.jpg', 'Spheric', 'http://www.teddyhwang.com/portfolio/#spheric'));
	images.push(new Array('http://www.teddyhwang.com/wp-content/themes/teddyhwang/images/themartellexperience.jpg', 'The Martell Experience', 'http://www.teddyhwang.com/portfolio/#martell'));
	$('#carousel').carousel({ startX:265, startY:-90, spacingX:-85, spacingY:90, fadeSpeed:800, focusFadeSpeed: 600, images:images, numImages: 3 });		

	$('#up').click( function() {
		$('#carousel').up();			
		clearTimeout(timer);
		setTimer();

	});

	$('#down').click( function() {
		$('#carousel').down();			
		clearTimeout(timer);
		setTimer();
	});		

	setTimer();
});

function setTimer()
{
	timer = setTimeout(autoScroll , 5000);
}

function autoScroll()
{		
	setTimer();

	if (!$('#carousel').isHover())
	{
		$('#carousel').last();
	}
}