$(document).ready(function() {
	//Поиск по сайту
		$(".what_search").attr("value","Поиск")
		$(".what_search").click(function() {
			if ( $(this).attr("value") == "Поиск" ) {
				$(this).attr("value","")
				a = $(this).attr("value")
			}
		})
		$(".what_search").blur(function() {
			if ( $(this).attr("value") == a ) {
				$(this).attr("value","Поиск")
			}
		})

	//PNG
		$(document).pngFix();

	//Классы
		

	//fancy
		$("a.fancybox").fancybox({
			'overlayShow': true
		})
	
	/*
	Scroll
		$('.marketing .text').jScrollPane({
			'scrollbarWidth': 11 ,
			'dragMaxHeight' : 11
		});
	*/

});