jQuery(document).ready(function() {
	jQuery('#slideshow_panel #prev, #slideshow_panel #next').hover(function () {
		jQuery(this).animate({
			opacity: 0.8
		}, 500, function() {});
	}, function() {
		jQuery(this).animate({
			opacity: 0.2
		}, 500, function() {});
	});

    jQuery('#homepage_slideshow').cycle({
		fx: 'scrollHorz', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 800,
		timeout: 7000,
		easeIn: 'easeout',
		easeOut: 'easein',
		prev:  '#prev',
		next: '#next'
	});
});
