$(document).ready(

function(){
$('div#banner').innerfade({
speed: 1000,
timeout: 6500,
type: 'sequence',
containerheight: '300px'
});
});

$(document).ready(function(){
	$("#region").change(function(){
	$("#sub_region").load("/aj/regions.php", { id: $("#region option:selected").val() });
         }); });

$(document).ready(function(){
	$(".img_list a").lightbox();
	});

function note_info(action, t)
	{
    $("#note").load("/aj/note/" );
	$("#main_bg").css('display',action);
	if(action=='block') $('#main_bg').animate({opacity: "0.8"}, 300);
	else $('#main_bg').animate({opacity: "0.1"}, 300);
	var text = '<div><br /><br />Объект добавлен в блокнот.<br /><br /><br /><br /><a href="#" onclick="note_info(\'none\'); return false;">закрыть сообщение</a> | <a href="/note/">открыть блокнот</a></div>';
	$("#note_info").css('display',action).html(text);
	}

$(document).ready( 
function(){
		 $("a.add_note").click(function(){
             $("#t_note").load("/aj"+$(this).attr('href') );
			 note_info('block',this.title);
			
			return false;
		 });  });
