$(document).ready(function() {
	$('tip-enabled a').tooltip({ 
		effect: 'slide'
	});
	
	$('.closed').hide();
	$('.show-next').click(function() {
		// Find the class of the 'show-next' element and reverse it
		if ($(this).hasClass('expand')){
			$(this).removeClass('expand');
			$(this).addClass('hide');
		} else if($(this).hasClass('hide')) {
			$(this).removeClass('hide');
			$(this).addClass('expand');
		}
		
		$(this).next().slideToggle('fast');
	});
	/*
	$("a[rel^='prettyPhoto']").video({
		
	});
	*/
});
