$(function(){
	$("a.gallery").fancybox({
		"overlayShow" : true,
		"zoomOpacity" : true,
		"zoomSpeedIn" : 500,
		"zoomSpeedOut" : 500,
		"zoomSpeedChange" : 500
	});
	$(".search>input").focus(function(){
		if($(this).val()=="поиск по сайту"){
			$(this).val("");
		}
	}).blur(function(){
		if($(this).val()==""){
			$(this).val("поиск по сайту");
		}
	});
});
