/* Search input hack */
$(document).ready( function() {
	var search_str = $("#search_input").val();
	$("#search_input").focus(function() { if ( $(this).val() == search_str ) $(this).val(''); });
	$("#search_input").blur(function() { if( jQuery.trim($(this).val()) == '' ) $(this).val( search_str ); });
	
	// Site menu open-close
	$('.submenu-exist').click(function(){
		$(this).next('ul').slideToggle(250);
	});
	
	$('.consultant-image a').click(function(){
		$('.vopros-spec-forma').slideToggle(250);
	});
	
	$('a.active_category').parents('ul:first').css("display", "block");
	$('a.active_category').parents('li:first').addClass("current-cat");
	$('a.active_category').parents('li:first a').css("text-decoration", "underline");
	
	$('#commentform').validate();
	
	// Cards
	jQuery("#ft_wpecards_edit_card").click(function(){
		jQuery("#ft_wpecard_viewcard").hide();
		jQuery("#ft_wpecards_previewing_card").show();
		return false;
	});
	
	$('img.br-im:last').css('display', 'none');
	
	// stylish select
	$('.menu-420 select').sSelect();
	
	// fancybox
	
	$(".thickbox").fancybox({ 'zoomOpacity':true,'overlayShow':false,'zoomSpeedIn':500,'zoomSpeedOut': 500});
	$(".attachment a").fancybox({ 'zoomOpacity':true,'overlayShow':false,'zoomSpeedIn':500,'zoomSpeedOut': 500});
	
	
});
