jQuery(document).ready(function($){
	$("a[href $= 'jpg'], a[href $= 'JPG']").colorbox({ opacity: '0.6',maxHeight:'95%' });
	$("a.movie").colorbox({ iframe: true, opacity: '0.8', height:'600px', width:'780px' });

	$('#slides').cycle({
    timeout: 6000,
    speed:  2500,
    delay: -2000,
    autostop: 1,
    end: function() {
        $('#replay').click(function () {
                $('#slides').cycle({
                            timeout: 6000,
                            speed:  2500,
                            delay: -2000,
                            autostop: 1
                });//end #slides
        });//end #replay
        }//end end
	});
});