jQuery(document).ready(function($){
	jQuery("#main_body_of_page,a").click(function(){
		var count = $.cookie("ccj_popunder");
		if(count != null){
			count = parseInt(count) + 1;
			$.cookie("ccj_popunder",count,{path: "/"});
		}
		else{
			call_pop_unders();
			$.cookie("ccj_popunder",1,{path: "/"});
		}
	});
});	
//			jQuery(document).ready(function(){
//				jQuery("#main_body_of_page,a").click(function(){
//					var params = {};
//					params['ccj_popunder_click'] = "yes";
//					jQuery.post("http://www.ccjdigital.com/checker",params,function(result){
//						if(result == 1){
//							call_pop_unders();
//						}
//					});
//				});
//			});

