/**
 * Joseph Hawes
 * Joseph Hawes Web Development
 * http://www.josephhawes.co.uk
 * 05/08/11
 */
var ale_url;
$(document).ready(function() {
	//Fancybox
	$('div#middle div.season a').fancybox({
		'autoDimensions'    : false,
		'width'             : 700,
		'height'            : 415,
		'transitionIn'      : 'none',
		'transitionOut'     : 'none',
		'type'              : 'iframe'
	});

	//Add lightbox marker to ale URLs
	$('div#middle div.season a').each(function() {
		ale_url = $(this).attr('href');
		if(ale_url.indexOf('?') != -1) {
			ale_url += '&';
		} else {
			ale_url += '?';
		}
		ale_url += 'lightbox=true';
		$(this).attr('href', ale_url)
	});
});
