// JavaScript Document


$(document).ready(function() {

	$("#slideshowItems").tabs("#slideshowItems > .item", {
	
		tabs:			'.link',
		effect: 		'fade',		
		fadeOutSpeed: 	1500,		
		fadeInSpeed: 	1500,
		rotate: 		true
	
	}).slideshow({
		
		prev:			'.prev',
		next:			'.next',
		autopause:		false,
		autoplay:		true,
		clickable:		false,
		interval:		4000
	
	});
	

	$("#textLink").toggle(
	
		function(){
			
			$("#textMore").slideDown("slow");			
			$(this).addClass("open");
		
		},
		function(){
			
			$("#textMore").slideUp("fast");			
			$(this).removeClass("open");
			
		}
		
	);
	
});


