$(document).ready(function(){
	$("a[href $= 'jpg']").colorbox({ opacity: '0.6' }); 

	$('.crlink a').click( function() {
		_gaq.push(['_link', $(this).attr('href') ]);
		return false;
	});

	if ($('.slides img').size() > 1) {
		$('.slides').cycle({
			timeout: 100, 
			speed:  2000,
			autostop: 0
		});
	}
	if ($('#slides img').size() > 1) {
		$('#slides').cycle({
			timeout: 5000, 
			speed:  2000,
			autostop: 0,
			delay: -3000,
			end: $('#replay').click(function () { $('#slides').cycle({timeout: 5500, speed:  2000, autostop:1}); })
		});
	}
});


