$(document).ready(function(){

  // Menu
  $('#menu ul li').hover(function(){
	$(this).addClass('hover');
  },function(){
	$(this).removeClass('hover');
  });
  // END Menu
 
  // LeftMenu
  $('#leftmenu ul li').hover(function(){
	$(this).addClass('hover');
  },function(){
	$(this).removeClass('hover');
  });
  // END LeftMenu
  
  // Auto-Value Form
  $('input.form_text[name=search_query]').click(function(){
	var value = $(this).val();
	if(value == 'Поиск...'){$(this).val('');}
  });
  $('input.form_text[name=search_query]').blur(function(){
	var value = $(this).val();
	if(value == ''){$(this).val('Поиск...');}
  });
  // END Auto-Value Form

  // Image Gallery
  $('.more_photo img').each(function(){
	$(this).css({'width' : '100px', 'height': 'auto', 'margin' : '0px 0px 0px 0px'});
  });
  $('.more_photo img').click(function(){
	var src = $(this).attr('src');
	var main = $('.img').attr('src');
	$(this).attr('src', main);
	$('.img').attr('src', src);
  });
  // END Image Gallery

});
