/*********************************************************************************************************************************/
/* DOCUMENT READY CALLS **********************************************************************************************************/
/*********************************************************************************************************************************/

$(document).ready(function(){
	
	/* EXTERNAL LINKS start ***********************************************************/
	$('a[rel="external"]').click(function(){
		this.target = "_blank";
	});
	/* EXTERNAL LINKS end *************************************************************/
	
	//$('.site > .left,html').height(document.documentElement.clientHeight);
	/*
	$('#slideshow .thumbs a').click(
		function(){
			$('#slideshow .display span').removeClass('active');
			
			clearInterval(start_slideshow);
			var photo = $(this).attr('rel');
			$('#'+photo).addClass('active');
		}
	);
	*/
	$('#slideshow2 .thumbs a').click(
		function(){
			$('#slideshow2 .thumbs a.active').removeClass('active');
			$(this).addClass('active');
			$('#slideshow2 .display.active').removeClass('active');
			var group = $(this).attr('rel');
			$('#'+group).addClass('active');
		}
	);
	
	/* SLIDESHOW start ***************************************************************/
	//var start_slideshow = setInterval( "slideSwitch()", 5000 );
	var start_slideshow2 = setInterval( "slideSwitch2()", 5000 );
	/* SLIDESHOW end *****************************************************************/
		
}); //close document.ready

/*********************************************************************************************************************************/
/* DOCUMENT READY FUNCTIONS ******************************************************************************************************/
/*********************************************************************************************************************************/

/* SLIDESHOW function start *********************************************************/
function slideSwitch2() {
	var $active = $('#slideshow2 .display.active span.active');
	if ( $active.length == 0 ) $active = $('#slideshow2 .display.active span:first');

	var $next =  $active.next('span').length ? $active.next()
			: $('#slideshow2 .display.active span:first');

	$active.addClass('last-active');
	
	$next.css({opacity: 0.0})
			.addClass('active')
			.animate({opacity: 1.0}, 500, function() {
			 $active.removeClass('active last-active');
	});
	
}
/*
function slideSwitch() {
	var $active = $('#slideshow .display span.active');

	if ( $active.length == 0 ) $active = $('#slideshow .display span:first');

	var $next =  $active.next('span').length ? $active.next()
			: $('#slideshow .display span:first');

	$active.addClass('last-active');
	
	$next.css({opacity: 0.0})
			.addClass('active')
			.animate({opacity: 1.0}, 500, function() {
			 $active.removeClass('active last-active');
	});
	
}
*/
/* SLIDESHOW function end ***********************************************************/