$(document).ready(function(){

	/**/
	var maxHeight = 0;
	var maxWidth = 0;
	$(".slideshow").each(function(){
		$(this).find('div').each(function(){
			if (maxHeight < $(this).height()) {maxHeight = $(this).height()}
			if (maxWidth < $(this).width()) {maxWidth = $(this).width()}
		});
		$(this).height(maxHeight);
		$(this).width(maxWidth);
		$(this).find('div').each(function(){
			$(this).height(maxHeight);
			$(this).width(maxWidth);
		});
	});
	/*
	$(".slideshow img").each(function(){
		if (maxHeight < $(this).height()) {maxHeight = $(this).height()}
	});
	*/
	
	$(".slideshow-tabs").tabs("> div", {

		// enable "cross-fading" effect
		effect: 'fade',
		fadeInSpeed: 1000,
		fadeOutSpeed: 1000,

		// start from the beginning after the last tab
		rotate: true

	// use the slideshow plugin. It accepts its own configuration
	}).slideshow({
	
		autoplay: true,
		interval: 5000,
		clickable: false
	
	});

});
