$(document).ready(function(){ 
	/*$('a.lightbox').lightBox({
		txtImage: '',
		txtOf: '/'
	});*/
	$('a.lightbox').ceebox();
	$('a.video-popup').ceebox({htmlWidth:610,htmlHeight:520});
	$('.group').ceebox({imageGallery:true});
	$.fn.ceebox.videos.base.param.allowScriptAccess = "sameDomain" //added to kill the permissions problem
	
}); 

function getId(which) {
	return document.getElementById(which);
}


function hideId(which) {
	getId(which).style.display = 'none';
}

function showId(which) {
	getId(which).style.display = 'block';
}

function hideRight() {
	hideId('right-tab');
}


function showRight() {
	getId('right-tab').style.display = 'block';
	getId('left-tab').style.display = 'none';
}


function showLeft() {
	hideId('right-tab');
	showId('left-tab');
}

function openJSFromFlash(value) {
	var testhtml2="<a href='/video/player.php' title='MeRegio Film'>MeRegio Film</a>";
	//$.fn.ceebox.popup(testhtml,{htmlWidth:300,htmlHeight:300,type:'html'});
	$.fn.ceebox.popup(testhtml2,{
		htmlWidth:610,
		htmlHeight:520,
		onload:function(){
			$('a#cee_closeBtn').click(function(){
				$.fn.ceebox.closebox();
				return false;
			})
		}
	});	 
}
// !!!Look at /video/player.php for settings!!!

