$(document).ready(function() {

	$("a[rel=gallery_pic]").fancybox({
		'autoDimensions'	: 'true',
		'overlayOpacity'	: '0.6',
		'overlayColor'		: '#fff',
		'centerOnScroll'	: 'true',
		'enableEscapeButton': 'true',
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over" class="medium_condensed">' + title + '<br /><span class="condensed">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span></span>';
		}

	});
	
	$("a#rts_letter").fancybox({
		'autoDimensions'	: 'true',
		'overlayOpacity'	: '0.6',
		'overlayColor'		: '#fff',
		'centerOnScroll'	: 'true',
		'enableEscapeButton': 'true',
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic'
	});
	
	$('#main_ads').cycle({
		fx: 'fade',
		timeout: 8000,
		pause: '1'
	});
	
	$('#rts_links_pics').cycle({
		fx: 'fade',
		timeout: 8000,
		pause: '1'
	});

	$('#inspiring_ad_pics').cycle({
		fx: 'fade',
		timeout: 9500,
		pause: '1',
	});
	
	$('#shaping_ad_pics').cycle({
		fx: 'fade',
		timeout: 7500,
		pause: '1',
	});
	
	$('#news_items').cycle({
		fx: 'scrollUp',
		timeout: 9000,
		pause: '1'
	});
	
	$('#quote_items').cycle({
		fx: 'scrollUp',
		timeout: 9000,
		pause: '1',
	});
	
	$('#main_title_pic').cycle({
		fx: 'fade',
		timeout: 7500
	});
	
	$('div.quals').hide();
	$('.details').append('<p class="medium_condensed sm_space_before sm_space_after"><a href="#" class="quals_link link">Click to toggle qualifications</a></p>');

	$('.quals_link').click(function() {
		$(this).parent().parent().next().toggle();
		return false;
	});
	
	$('.training_partners_alt_list').hide();
	
	$('.training_partners_alt_link').append(' <span class="condensed">(Click the title to toggle list of notes)</span>');
			
	$('.training_partners_alt_link').click(function() {
		$(this).next('div.training_partners_alt_list').toggle();
		return false;
	});	
	
});
