var anim = function(el){
	if(el !== 'l') jQuery("div.gif.logo_"+el).animate(
			{
				opacity: 'toggle',
				'filter': '',
				top: ['0', 'swing'],
				left: ['0', 'swing']
				
			},
			{ 
				duration: 700,
				complete: function(){  if(el <= 2) anim(el+1); else anim('l'); } 
			}
		);
	else 
		jQuery("div.gif.logo_"+el).animate({width: 'show'}, 1300);
};

jQuery(function(){
	jQuery("li a[title='hidden']").each(function(){jQuery(this).parent().parent().hide()});
	setTimeout( function(){ anim(1) } , 500 );
	
	jQuery("#searchinput").blur(function(){
		if(jQuery(this).val().length === 0) jQuery(this).val('Поиск по сайту...');
	}).click(function(){
		if(jQuery(this).val() === 'Поиск по сайту...') jQuery(this).val('');
	});
	
	if( jQuery.browser.msie){
		jQuery("div#mainmenu > ul ul li").each(function(){
			jQuery(this).width( jQuery(this).parent().width() - 30 );
		});
	}
});
