$(function(){

	
	// FadeIN
	//----------------------------------------------------------------------------------------
	
/* 	$('body').fadeIn(); */
/*
	$('#Logo').fadeIn(400);
	$('#MainMenu').fadeIn(400);
	$('#BannerContainer').fadeIn(400);
	$('#NewsBox').fadeIn(400);
*/

	
	// PGN hack
	//----------------------------------------------------------------------------------------
/* 	$('body').supersleight({shim: '../images/pixel.gif'}); */
		
	
	// BANNERS SLIDESHOW
	//----------------------------------------------------------------------------------------
	$('#Banners') 
		.cycle({
		    fx: 'fade',
		    speed: 1800,
		    timeout: 4800,
		    pause:  1 ,
		    random:  0,
		    easing: 'null'
			}
	);
		
	
	// NEWS SLIDESHOW
	//----------------------------------------------------------------------------------------
	$('#News') 
		.cycle({
		    fx: 'scrollDown',
		    speed: 1800,
		    timeout: 4800,
		    pause:  0 ,
		    random:  0,
		    easing: 'null'
			}
	);
		
	
	// EXTRA DETAILS
	//----------------------------------------------------------------------------------------
	$('.DetailsContent').hide();

	$('.ExtraDetails h3').click(
		function() {
			$(this).next('.DetailsContent').slideToggle('normal');
			$(this).toggleClass('DetailsAreVisible');
		}
	);
	
	
});


