$(document).ready(function() {
		var interval;
		
	$('ul#carousel').roundabout({
		shape: 'square',
		minOpacity: 0, // invisible!
		reflect: false,
		btnNext: '#next',
		btnPrev: '#previous',
		duration: 800

	}).hover(
	function() {
		// oh no, it's the cops!
		clearInterval(interval);
	},
	function() {
		// false alarm: PARTY!
		interval = startAutoPlay();
	}
	);
	
	$('#contactOpen').click(function() {
		$('#contactUsBig').toggle();
	});
	/*$('li').focus(function() {
		$('.roundabout-in-focus img').css('width:300px;height:270px;');
	}).blur(function() {
		$('.roundabout-in-focus img').css('width:100px;height:75px;');
	});*/

	// let's get this party started
	interval = startAutoPlay();

});

function startAutoPlay() {
				return setInterval(function() {
					$('ul#carousel').roundabout_animateToNextChild();
				}, 5000);
			}




