$(document).ready(function() {
	
//	$(".container").css({opacity: 0});
		
	// FADE LOGO/ABOUT IN & OUT
//	$(".leftbox").fadeTo("fast", 0.25);
//	$(".leftbox").hover(function() {
//		$(this).fadeTo("fast", 1.00);
//	},function() {
//		$(this).fadeTo("fast", 0.25);
//	});
	
	// FADE BETA IN & OUT
	$(".betabox").fadeTo("fast", 0.25);
	$(".betabox").hover(function() {
		$(this).fadeTo("fast", 1.00);
	},function() {
		$(this).fadeTo("fast", 0.25);
	});
	
	// IMG LINK HOVER
//	$(".hover").hover(function() {
//		$(this).fadeTo("fast", 0.75);
//	},function() {
//		$(this).fadeTo("fast", 1.00);
//	});
	
	// DL
	$(".dl").fadeTo("fast", 0.25);
	$(".dl").hover(function() {
		$(this).fadeTo("fast", 1.00);
	},function() {
		$(this).fadeTo("fast", 0.25);
	});
	
	// BODY ANIMATE COLOUR
//	$(".dl").hover(function() {
//		$('body').animate({ backgroundColor: "orange" }, "fast")
//	},function() {
//		$(this).fadeTo("fast", 0.25);
//	});
	
	$('div.image a').fancybox({ 'hideOnContentClick': false, 'overlayShow': true });
	$('div.text a.fancy').fancybox({ 'hideOnContentClick': false, 'overlayShow': true })
	$("a.group").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true });
	
});