$(document).ready(function() {
	//Шапка сайта
		$('#gallery').fadeIn('slow').cycle()
	
	//Галерея
		$('.fancybox').fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity':	0.9,
		'overlayColor'	:	'#222'
	});
	
	//Аккордион для главной страницы
		$('.info .closed .can_hide').hide();
		$('.slide_block').click(function() {
			sbClass = $(this).attr('class');
			if (sbClass!='news slide_block news open')  {
				$('.info').find('.open').addClass('closed').removeClass('open').find('.can_hide').slideUp('slow');
				$(this).addClass('open').removeClass('closed').find('.can_hide').slideDown('slow');
			}
			
		})
	
	//Поиск по сайту
		$("#ajaxSearch_input").attr("value","Поиск по сайту…")
		$("#ajaxSearch_input").click(function() {
			if ( $(this).attr("value") == "Поиск по сайту…" ) {
				$(this).attr("value","")
				a = $(this).attr("value")
			}
		})
		$("#ajaxSearch_input").blur(function() {
			if ( $(this).attr("value") == a ) {
				$(this).attr("value","Поиск по сайту…")
			}
		})
})
