/**
 * 
 * @author Artod for ÎÎÎ "Ýêñïðåññ ëàá"
 * http://MoiaVizitka.ru/Artod, http://artod.ru
 *
 * Copyright (c) 2009 ÎÎÎ "Ýêñïðåññ ëàá" http://expresslab.ru
 *
 */

$(document).ready(function(){


	$("input.reset").click(function(){
	//alert('dfvdfv');
		/* $(this).parent().find('input').not('input[type="submit"], input[type="reset"], input[type="hidden"]').each(function(){
			$(this).val('');
		});
		$(this).parent().find('option').eq(0).attr('selected', 'selected') */

		$(this).parent().find(':input').not(':button, :submit, :reset, :hidden').val('').removeAttr('checked').removeAttr('selected');
		 
		$(this).parent().submit();
	});
	
	$("a.fancybox").fancybox({
		'zoomOpacity' : false,
		'overlayShow' : true,
		'hideOnContentClick' : false,
		'overlayOpacity' : '0.8',
		'zoomSpeedIn' : '200',
		'zoomSpeedOut' : '200'
	});
	
	$("input[name='date_to'], input[name='date_from']").datepicker({
		dateFormat: 'yy-mm-dd',
		regional: 'ru',
		changeMonth: true,
		changeYear: true/*,
		altFormat: 'DD, d MM, yy'
		
		 ,
		altField: '.datepicker-alternate', 
		altFormat: 'DD, d MM, yy' */
	});
	
	
	//$(".menuslide").hide();
	// $(".menuslide").prev().find('a').toggle(
		// function(){
			// $(this).parent().next().slideDown();
		// },
		// function(){
			// $(this).parent().next().slideUp()
		// }
	// );

});
