$(document).ready(function() {
	//Facebox
		$('.fancybox').fancybox({
			'hideOnContentClick': true,
			'zoomSpeedIn': 600, 
			'zoomSpeedOut': 300
		}); 
	
	//Поиск по сайту
		$(".what_search").attr("value","Поиск");
		$(".what_search").click(function() {
			if ( $(this).attr("value") == "Поиск" ) {
				$(this).attr("value","")
				a = $(this).attr("value")
			}
		});
		$(".xwhat_search").blur(function() {
			if ( $(this).attr("value") == a ) {
				$(this).attr("value","Поиск")
			}
		});
	
	//PNG
		$(document).pngFix();
		
	//menu
		$('#menu .item').hover(
			function() {
				$(this).attr('style','top:5px; padding-top:5px;')
			},
			function() {
				$(this).attr('style','')
			}		
		);
	
	//Classes
		$('.blocks .block:last').addClass('last')
	
	//Крутилка подарков
		$('.to_right').click(function() {
			a = $(this).attr('rel')
			$('#'+a+' .motalka').animate({
				right: '+=180px'
			})
			$('#'+a+' .to_left').show()			
		})
		$('.to_left').click(function() {
			a = $(this).attr('rel')
			$('#'+a+' .motalka').animate({
				right: '-=180px'
			})
		})
});
