jQuery(document).ready(function(){ 
		debugging = true;
		
		$("map").ceebox({onload:function(){$("#cee_box").css({border:"3px solid red"});}});							
		
		$(".ceebox").ceebox({});
		//$("body").ceebox(); //uncomment and every link on the page is in one gallery
		
		var testhtml = "<div style='padding:20px;text-align:center'><h2>webs3d: this link it's empty, please close the pop up!</h2><p><a href='#' class='cee_close'>CLOSE_</a></p></div>"
		$("#testlink").click(function(){
			$.fn.ceebox.popup(testhtml,{width:600,height:400});			  
		});
	});