$(document).ready(function() {
	////////////////////////////////////////////////////////////////////////
	/////////////// WARNING!! DO NOT TOUCH BELOW, EVEN GEEKS ///////////////
	////////////////////////////////////////////////////////////////////////
	if (tb_publish == 1) {
		setTimeout(function(){
				if (overlay_close == 0) {
					$("#TB_overlay").unbind("click",tb_remove);
				}
				
				$('<script type="text/javascript" src="'+ksd_pu_cur+'wp-content/plugins/ksd-popupbox/popupbox/library/jquery.cookie.js"></script>').appendTo("head"); // include cookie js
				if (tb_close < 0) {
					$.cookie("tbclosing", "trueclose", { expires: tb_close });	
				}
				function popupboxclosing(tb_close) {
					if (tb_close > 0) {
						$.cookie("tbclosing", "trueclose", { expires: tb_close });	
					}	
				}
				
				$mycookie = $.cookie("tbclosing");
				if (!$mycookie) {
					var tb_css = '<link rel="stylesheet" type="text/css" href="'+ksd_pu_cur+'wp-content/plugins/ksd-popupbox/popupbox/themes/'+tb_theme+'/popupbox.css" >';
					$('head').append(tb_css); // include css
					tb_show("Your Title", ksd_pu_cur+"wp-content/plugins/ksd-popupbox/popupbox/themes/"+tb_theme+"/content.html?KeepThis=true&TB_iframe=true&height="+tb_height+"&width="+tb_width, false);
				}
				
				// calling the theme js file
				$('<script type="text/javascript" src="'+ksd_pu_cur+'wp-content/plugins/ksd-popupbox/popupbox/themes/'+tb_theme+'/theme.js"></script>').appendTo("head");
				mytheme(tb_theme, ksd_pu_cur); 
				
				$('#TB_closeWindowButton').click(function() {
					popupboxclosing(tb_close); 
					tb_remove(); // need to define here to make the close button functional							  
				});
				
				if (overlay_color != '') {
					$('.TB_overlayBG').css('background',overlay_color);
				}
				if (overlay_opacity != '') {
					$('.TB_overlayBG').css('opacity',overlay_opacity);	
				}
		},tb_opening);
	}
});

