jQuery(document).ready(function($){
								
	// set body for js-only 
	$('body').attr('id','jsOnly');
	
	//  top level nav first item 
	$('.topLevelNav li a:last').addClass('lastTLNitem');
	
	// load carousel
	$('#myCarousel').jcarousel({
    	wrap: 'both',
		scroll: 1,
		auto: 3,
		animation : 1200
    });
	
	// top top
	$('footer a.up').click(function(e){	
		$.scrollTo( this.hash || 0, 400);
		e.preventDefault();
	});
	
	// player gallery
	$(function() {
		$('#playergallery a').lightBox({fixedNavigation:true});
	});
	
	// player gallery
	$(function() {
		$('#gallerySingle a').lightBox({fixedNavigation:true});
	});
	$(function() {
		$('#VenuePix a').lightBox({fixedNavigation:true});
	});
	$(function() {
		$('#VidPix a').lightBox({fixedNavigation:true});
	});
	$(function() {
		$('#CompPix a').lightBox({fixedNavigation:true});
	});
	
	// players list fourth item 
	$('.playersIndexList li:nth-child(4n)').addClass('fourthItem');
	
	// players list fourth item 
	$('#playergallery li:nth-child(4n)').addClass('playergalleryLastItem');
	
	
	
	$('#myCarousel li a').live('click', function(e){
		e.preventDefault();
		
		var parent_li_content = $(this).siblings('.asMainItem').html();
		
		$('#loader').fadeOut(400, function(){
			$('#loader').html(parent_li_content).fadeIn(500);
		});
	});
	
	$('#loader').html($('#myCarousel li:first-child .asMainItem').html());
	
	// sort out result table colouring
	$('.resultsTables td:contains("X")').addClass('fillsquare');
});

