
function switchVisibility(obj)
{
	if (obj.style.display == 'none')
		obj.style.display = 'block';
	else
		obj.style.display = 'none';
}

$(document).ready(function(){

	var Banners = $('.banner_admin');

	$(Banners).each(function(i,data){
		$('#top_region_select_link_container').hide();

		//alert(i+":"+$(data).attr('b_id'));
		$(data).find('em').load("/index.php?act=ajax&subact=banner_admin_ajax&b_id="+$(data).attr('b_id'));

		$(data).find('em').after(
			$("<a>").attr("href","#").attr("b_id",$(data).attr('b_id')).html("код баннера").addClass("banner_admin_link")
		);

	});

	$('.banner_admin_link').click(function(){
		//alert($(this).attr('b_id'));

		$("<img>").attr("src","/img/trans_black.png").css({"position":"fixed", "left":"0", "top":"0", "width":"100%", "height":"1200px"}).appendTo("#footer");
		$("<div>").addClass("divModalWindow").appendTo("#footer").load("/index.php?act=ajax&subact=banner_admin_form_ajax&b_id="+$(this).attr('b_id'));

		return false;
	});

});
