// OPEN DIVS

$(document).ready(function() {
	// hides the slickbox as soon as the DOM is ready
	// (a little sooner than page load)
	$('.caption').hide();
	var s = $(this);
	$('.slideOut .toggle').click(function(){
		$('.caption').each(function(s){
			var d = $(this).css('display');
			if (d === 'block') {
				$(this).slideToggle('medium');
			}
		});
		$(this).siblings('.caption').slideToggle('medium')
	});
});
