function StartSlideshow(id,t_out,spd) {
    $('#indeximg_'+id).cycle({
		timeout: t_out,
		fx: 'fade',
		speed: spd,
		sync: false
	});
}

$(function(){

$('span.indeximg_button').unbind().hover(
  function() {
    $('img', this).stop().animate({opacity: 0}, 300);
  },
  function() {
    $('img', this).stop().animate({opacity: 1}, 150);
  }
);

});
