function videoClicked(el) {
	$(document.body).prepend(
		'<div id="lightBoxContainer"><div id="lightBoxOutside" onclick="return removeVideo();"></div><div id="lightBoxInsideContainer"><div id="lightBoxInside"><embed width="360" flashvars="videourl='+$(el).attr('rel')+'" type="application/x-shockwave-flash" src="/flash/sb1videoplayer2.swf" height="240"></div><a id="lightBoxCloseBox" onclick="return removeVideo();">close</a></div></div>'
		);
	return false;
}

function removeVideo() {
	removeEverything();
	
	return false;
}

function removeForm() {
	removeEverything();
	
	return false;
}

function removeEverything() {
	$('#lightBoxContainer').remove();
	$('#lightBoxOutside').remove();
	$('#lightBoxInside').remove();
	$('#lightBoxCloseBox').remove();
	$('#popupcontactform').hide();
	$('#popupspecialform').hide();
	
	return false;
}

function doMailPopup() {
	$(document.body).prepend(
		'<div id="lightBoxContainer" onclick="return removeVideo();"><div id="lightBoxOutside" onclick="return removeVideo();"></div></div>'
		);
	$('#popupcontactform').show();

}

function doFormPopup() {
	$(document.body).prepend(
		'<div id="lightBoxContainer" onclick="return removeForm();"><div id="lightBoxOutside" onclick="return removeForm();"></div></div>'
		);
	$('#popupspecialform').show();
}
