function initialize_events(options) {
	$('#photoContainer').hover(
		function() {
			$('#photoContainer').addClass('active');
		},
		function() {
			$('#photoContainer').removeClass('active');
		}
	);
	$('#slides').cycle({ 
	    fx:     'fade', 
	    speed:   options.speed, 
	    timeout: options.timeout, 
	    pager:  '#paging_info',
		  next: '#next',
		  prev: '#prev'
	});

}
function slideshow_options_auto() {
	var options = {
        timeout: 4000,
        speed: 1000
    };
	return options;
}
function slideshow_options_manual() {
	var options = {
        timeout: null,
        speed: null
    };
	return options;
}
