/* 2008 (c) UGY Group | http://www.ugy.ru */
$(function(){
 $('#menu').hide();
 menubg=new Image(11,17);menubg.src='/public/img/menu/bga.gif';
 $('a[target="#overlay"]').overlay({
	expose:{},
	onBeforeLoad:function(){
	 var url=this.getTrigger().attr('href');
	 $('div.contentWrap').css({'width':'50px','height':''}).html("<img src='/public/img/wait.gif'>");
	 if(url.indexOf('img')!=-1){
		var img=new Image();
		$(img).load(function(){
		 var l=Math.round(($(window).width()-img.width)/2);
		 var t=Math.round(($(window).height()-img.height)/2)+$(window).scrollTop();
		 $('#overlay').css({'left':l+'px','top':t+'px'});
		 $('div.contentWrap').css({'width':img.width+'px','height':img.height+'px'}).html("<div><img width='"+img.width+"' height='"+img.height+"' src='"+img.src+"'></div>");
		 this.src='';
		});
		img.src=url;
	 }
	 else{
		var w=this.getTrigger().attr('type')||500;
		$('div.contentWrap').css({'width':w+'px','height':'auto'}).load('/request/page',{'url':url});
	 }
	}
 });
 var find=$('#find').autocomplete({serviceUrl:'/request/find',onSelect:function(v,d){if(d){$('#finddata').val(d);$('#findForm').find('input:image').removeAttr('disabled').attr('title','Перейти в выбранный раздел');$('#findForm').submit();}return false;}});
 $('#find').change(function(){if(!$(this).val()) $('#finddata').val('');}).keypress(function(){$('#finddata').val('');$('#findForm').find('input:image').attr({'disabled':'disabled','title':'Введите ключевые слова и выберите найденный раздел'});});
 $('#findForm').submit(function(){var url=$('#finddata').val();if(url) document.location.href='/'+url;return false;});
 if(!$.browser.safari) $('input[placeholder]').blurfocus();
 $('#mainmenu').mmenu();
 $('#menu').show();
});
