jQuery.noConflict();
jQuery(document).ready(function() {
	return true; //interstitial disabled 
	if(jQuery.cookie('interstitial') != '1' ) {
	    jQuery.cookie('interstitial', '1', { expires: 1 });
	    img_src = "http://www.oads1.com/www/delivery/avw.php?zoneid=195&amp;n=af6078ba";
	    jQuery("#interstitial_a").append("<img src=\""+img_src+"\" style=\"float:none;margin:0pt auto;display: block;width:800px;position:static\"/>");
            jQuery("#interstitial").prepend("<a href='#' id='close_interstitial' style=\"float:right;font-size: 10pt\">Skip this Ad..</a>");
            jQuery("#close_interstitial").click(function() { 
                    jQuery.unblockUI();
                    return false; 
            });
	    jQuery('#interstitial').show(); 
	    //jQuery(img).center();
	    jQuery.blockUI({
	            message: jQuery('#interstitial'),
	            css: {  
	                top: '10px',
	                left: '10px',
	                height: (jQuery(window).height()-20) + 'px',       
	                width: (jQuery(window).width()-20) + 'px'
        	    },
		    timeout: 20000,
		    // styles for the overlay 
		    overlayCSS:  {  
		        backgroundColor:'#000',  
		        opacity:        '0.6'  
		    }, 
		    onUnblock: function(){ 
	    		jQuery('#interstitial').hide(); 
		    } 
	     });
	}
});

