$(document).ready(function(){
	/* SLIDESHOW start **************************************************************/
	setInterval( "slideSwitchSmall()", 3500 );
	setInterval( "slideSwitchLarge()", 4500 );
	/* SLIDESHOW end ****************************************************************/	
		
}); //close document.ready

/* SLIDESHOW function start *********************************************************/
function slideSwitchSmall() {
	var $active = $('#btm-middle a.active');

	if ( $active.length == 0 ) $active = $('#btm-middle a:last');

	var $next =  $active.next().length ? $active.next()
			: $('#btm-middle a:first');

	$active.addClass('last-active');

	$next.css({opacity: 0.0})
			.addClass('active')
			.animate({opacity: 1.0}, 1000, function() {
			 $active.removeClass('active last-active');
	});
}
function slideSwitchLarge() {
	var $active = $('#btm-right a.active');

	if ( $active.length == 0 ) $active = $('#btm-right a:last');

	var $next =  $active.next().length ? $active.next()
			: $('#btm-right a:first');

	$active.addClass('last-active');

	$next.css({opacity: 0.0})
			.addClass('active')
			.animate({opacity: 1.0}, 1000, function() {
			 $active.removeClass('active last-active');
	});
}

/* SLIDESHOW function end ***********************************************************/	