$(document).ready(function() {
	$('.home-photo').cycle({timeout:15000});
	$('#tabs').tabs();
	$('.home-photo .photo').each(function() {
		var margin = ($(this).parent().width() - $(this).width()) / 2;
		$(this).css('margin-left',margin+'px');
	});
	$('.controls').css('opacity', .75);
	$('#pause').click(function() {
		if ($(this).html() == 'Pause') {
			$(this).html('Play');
			$('.home-photo').cycle('pause');
		} else {
			$(this).html('Pause');
			$('.home-photo').cycle('resume', true);
		}
		return false;
	});
	$('.slideshow').hover(
		function() { $('.controls').fadeIn(); },
		function() { $('.controls').fadeOut(); }
	);
	$('.controls').hover(
		function() { $('.controls').css('opacity', 1); },
		function() { $('.controls').css('opacity', .75); }
	);
});
