function resize()
{
	//$.fn.colorbox.resize();
//	alert('started');	
}

function testCB()
{
	$('#colorbox').before('<div id="timerDivCont" style="position:fixed;text-align:center;z-index:99999;width:99%;"><div id="timer" style="width:100px;margin:auto;"></div></div>');	
	$('#timer').countdown({until: +10, expiryText: '<div class="over"><a onclick="$.fn.colorbox.close();" style="cursor:pointer;font-size:16px;font-weight:bold;">Close</a></div>', format:'S'});
}

function clean()
{
	//alert('clean up process');
	$('#timer').countdown('destroy');
	$('#timerDivCont').remove();
}

function GetAds()
{
	//alert('test');
	$.ajax({type: "POST",  url: "Ajax.php",   data: "Work=GetAds",
		 success: function(data){
			//alert(data);
		   $('#AdCont').html(data);
		 }
	});
}

$(document).bind("keydown.cbox_close", function (e) {
	if (e.keyCode === 27) {
		e.preventDefault();
		cboxPublic.close();
	}
});


$(document).ready(function(){
						   
	$(".TriggerCbox").live('click', function(e){
		e.preventDefault();

		HREF = $(this).attr('href');
		$.fn.colorbox({ iframe:true, href:HREF, innerWidth:1000, innerHeight:600, overlayClose:false, opacity: 0.30, close:false, onCleanup:clean}, testCB);
		
		setTimeout('GetAds();', 3000);		
	});
});

