$(document).ready(function()
{
	if (location.href=='http://apple.com.ru/')
	{
		$("#adblock").delay(3500).show('slide', {}, 3000, function()
		{
			$("#adblock .content").show();

			$("#adblock-time").everyTime(1000, function()
			{
				var time=$(this).text()*1-1;
				if (time)
				{
					$(this).text(time);
				}
				else
				{
					$("#adblock-timer").hide();
					$("#adblock-close").show();		
				}
			});
		});

		$("#adblock-close").click(function()
		{
			$("#adblock").hide();

			return false;
		});
	}
});
