
$(document).ready(function(){
	
	$("#banners").cycle({
		fx: 'fade',
		speed: 2000,
		timeout: 5000,
//		pager: '#pager',
		slideExpr: 'img'
		/*pagerAnchorBuilder: function(idx, slide){
			return '<a href="#"></a>';
		}*/
	});
	
	$('.content a[href^="http"]').click(function(){
		var href = $(this).attr("href");
		if(href.search(/ppdz/i)<0){
			$("#bghover").height($("body").height());
                        $("#agreebox").css("margin-top",$(window).scrollTop()+50);
			$("#agreebox").css("margin-left",($("body").width()/2)-250);
			$("#bghover").show();
			$("#agreebox").show();
			
			$("#noout").click(function(){
				$("#bghover").hide();
				$("#agreebox").hide();
			});
			
			$("#yesout").click(function(){
				window.open(href);
				$("#bghover").hide();
				$("#agreebox").hide();
			});
			
			return false;
		}
	});
});


