// ---------------------------------------------------------------------------------
// ------ SLIDESHOW
// ---------------------------------------------------------------------------------
$(document).ready( function() {

	function onBefore() {
		$('.slideshow_nav').html('');
	}

	function onAfter() {
		$('.slideshow_nav').html('<'+'p>' + this.alt + '<'+'/p>');
	}

	$('.slideshow').cycle({
		fx:		'fade',
		slideExpr:	'img',
		speed:	2000,
		timeout:	6000,
		before:	onBefore,
		after:	onAfter
	});

});
// ---------------------------------------------------------------------------------


// ---------------------------------------------------------------------------------
// ------ SLIDESHOW (2)
// ---------------------------------------------------------------------------------
$(document).ready( function() {

	function onBefore02() {
		var s02_title = $(this).find('a.act').attr('title');
		var s02_href = $(this).find('a.act').attr('href');
		$('.slideshow02_title p a').attr('href', s02_href);
		$('.slideshow02_title p a').attr('title', s02_title);
		$('.slideshow02_title p a').text(s02_title);
		$('.slideshow02_more').attr('href', s02_href);
	}

	$('.slideshow02').cycle({
		fx:		'cover',
		speed:	2000,
		timeout:	10000,
		before:	onBefore02,
		pager:	'#slideshow02_nav',
		pagerAnchorBuilder: function(idx, slide) {
			return '<a href="#"></a>';
		}
	});

});
// ---------------------------------------------------------------------------------




