/* SLIDESHOWS
----------------------------------------------------------------------------- */


function slideshows() {


	// BIG SLIDESHOWS
	$('.slideshow').each(function() {
	
	
		// REMOVE PORTRAIT PHOTOS
		$(this).find('img.portrait').parent().parent().remove();
	
	
		// CHANGE MARKUP
		$(this).children('a, h3, ul.actions').remove();
	
		$(this).children('ul').children('li').each(function() {
		
			$(this).parent().parent().append($(this).children('a:first-child'));
			$(this).remove();
		
		});
		
		$(this).children('ul').remove();


		// GET RANDOM TIMEOUT
		var random = (Math.floor(Math.random() * 5) + 3) * 1000;
		
		
		// START SLIDESHOW
		$(this).cycle({ 
			fx:      'fade', 
			speed:    1800, 
			timeout:  random,
			random:	  1
		});
		
		
		// UNHIDE SLIDESHOW
		$(this).show();
		
	});
	
	
	// SMALL SLIDESHOWS
	$('.slideshow-sm').each(function() {
	
	
		// CHANGE MARKUP
		$(this).children('a, h3, ul.actions').remove();
	
		$(this).children('ul').children('li').each(function() {
		
			$(this).parent().parent().append($(this).children('a:first-child'));
			$(this).remove();
		
		});
		
		$(this).children('ul').remove();


		// GET RANDOM TIMEOUT
		var random = (Math.floor(Math.random() * 5) + 3) * 1000;


		// START SLIDESHOW
		$(this).cycle({ 
			fx:      'fade', 
			speed:    1800, 
			timeout:  random,
			random:	  1
		});
		
		
		// UNHIDE SLIDESHOW
		$(this).show();
		
	});
	
}