$=jQuery;
$('html').addClass('preload');


$(document).ready(function($) {
    $('#photos').cycle({
		fx: 'fade',
		timeout: 12000,
		prev:  $('#prev'),
		next:  $('#next')
	});
	
	
	//Insets
	$('#content').find('.wp-caption').each(function(){
		$(this).wrap('<div class="inset-frame" />');

	})
	
		$('#content').find('.inset').each(function(){
		$(this).wrap('<div class="inset-frame" />').wrap('<div class="inset-content" />');
	})
	
	
	
	//Increase Content minimum heght
	minHeight = $('#sidebar').outerHeight();
	if( $('#photos').length > 0 )
		{
			minHeight -= $('#header').outerHeight();
		}
	
	$('#content').css('min-height', minHeight);
	
	
}); //ready


