$(function(){

	$("#dateFrom, #dateTo").datepicker({ 
		dateFormat: 'yy-mm-dd',
		firstDay: 1,
		changeMonth: true,
		showAnim: 'fadeIn',
		defaultDate: "+1w",
		minDate: 0,
		beforeShow: function() {
			$(this).addClass("datepickerActive");
		},
		onClose: function() {
			$(this).removeClass("datepickerActive");			
		}
	});
	
	$(".small_button")
		.mouseover(function(){ $(this).addClass("small_button_hover") })
		.mouseout(function(){ $(this).removeClass("small_button_hover"); $(this).removeClass("small_button_down") })
		.mousedown(function(){ $(this).addClass("small_button_down") })
		.mouseup(function(){ $(this).removeClass("small_button_hover"); $(this).removeClass("small_button_down") })

});