$(document).ready(function() {
	$(".search_form select").customSelect();
	
	$("#search_name").focus(function() {
		$(this).val(($(this).val() == "Название") ? "" : $(this).val());
		
	}).blur(function() {
		$(this).val(($(this).val() == "") ? "Название" : $(this).val());
	});

	$("#search_ecode").focus(function() {
		$(this).val(($(this).val() == "Код Е") ? "" : $(this).val());
		
	}).blur(function() {
		$(this).val(($(this).val() == "") ? "Код Е" : $(this).val());
	});
	
	$("a.fancy-iframe").each(function() {
		$(this).attr("href", $(this).attr("href") + "&clear");
		
	}).fancybox({
		"autoScale" : false,
		"transitionIn" : "none",
		"transitionOut" : "none",
		"type" : "ajax"
	});
	
	$("a.fancy-image").fancybox({
		"autoScale" : true,
		"transitionIn" : "none",
		"transitionOut" : "none",
		"hideOnContentClick" : true
	});
});

