<!--
function TargetBlank() {
	$('.target_blank').attr('target','_blank');
}

//////////////////////////// disable right click //////////////////////////////
function clickIE4() {
	if(event.button==2)
		return false;
}

function clickNS4(e) {
	if(document.layers||document.getElementById&&!document.all) {
		if(e.which==2||e.which==3)
			return false;
	}
}

function disableRightClick() {
	if(document.layers) {
		document.captureEvents(Event.MOUSEDOWN);
		document.onmousedown=clickNS4;
	}
	else if (document.all&&!document.getElementById) {
		document.onmousedown=clickIE4;
	}
	document.oncontextmenu=function() {
		return false;
	}
}
///////////////////////////////////////////////////////////////////////////////

function showPhotoSetList() {
	$('#photoSetList').fadeIn("fast");
}

function hidePhotoSetList() {
	$('#photoSetList').fadeOut("fast");
}

function welcomeEffects() {
	$('#bodybgimage').fadeIn("slow");
}

function resizeContents() {
	$('html').css("overflow","hidden");
	var hV = window.innerHeight ? window.innerHeight : $(window).height();
	if($('#pageContent').css("margin-top")) {
		var mT=($('#pageContent').css("margin-top")).replace("px","");
		var nH=hV-mT-180;
		$('#pageContent').css("height",nH+"px");
	}
}

function init() {
	disableRightClick();
	TargetBlank();
	resizeContents();
	welcomeEffects();
	if($('#gallery'))
		$('#gallery').spacegallery({loadingClass: 'loading'});
}

$(document).ready(function() { 
	init();
});
//-->
