﻿var flashVars = false;
var flashParams = {menu: 'false', wmode: 'transparent' };
var flashAttributes = false;

$(document).ready(function() {
	$(".adsholder").each(function() { $(this).html("<img src='/Resource/Image/blank.gif' class='blank' /><img src='/Resource/Image/loading1.gif' alt='waiting...' border='0' />"); });
	$(".adsholder").each(function() { getAds($(this).attr("adsid")) });
});

// 获取广告代码
function getAds(adsID) {
	$.get("/Home/Ad/Ajax", { id: adsID, number: Math.round(Math.random() * 10000) }, function(data) { $("[adsid='" + adsID + "']").html(data); });
}

// 记录广告点击数
function hitAds(adsID) {
	$.get("/Home/Ad/UpdateHits", { id: adsID, number: Math.round(Math.random() * 10000) }, function(data) { });
}
