var isOn = false;


$(document).ready(function(){
//alert('document loaded');						   
			/* This is basic - uses default settings */
	
	$("a#single_image").fancybox();
	
	/* Using custom settings */
	
	$("a#maps").fancybox({
		'hideOnContentClick': true,'overlayColor':'#000000','type': 'iframe','width':640,'height':484
	});
	$("a#sounds").fancybox({
		'hideOnContentClick': true,'overlayColor':'#000000','type': 'iframe','width':640,'height':484
	});
	$("a#laptop").fancybox({
		'hideOnContentClick': true,'overlayColor':'#000000','width':800,'height':700,'type': 'iframe'
	});
	$("a#weapons").fancybox({
		'hideOnContentClick': true,'overlayColor':'#000000','type': 'iframe','width':640,'height':484
	});
	$("a#explosives").fancybox({
		'hideOnContentClick': true,'overlayColor':'#000000','type': 'iframe','width':640,'height':484
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
				   
});


function toggleWelcome(){
	if(isOn == false){
		document.getElementById("backgroundContent").style.display = "block";
		document.getElementById("backgroundEnter").style.display = "none";
		isOn = true;
	}else{
		document.getElementById("backgroundContent").style.display = "none";
		document.getElementById("backgroundEnter").style.display = "block";
		isOn = false;
	}
}


