$(document).ready(function () {

	$('#menu li').click(function() {
		if($(this).children().attr('href')) {
			$(location).attr('href',$(this).children().attr('href'));
		};
	});
	
	$('#dateFrom,#dateTo').keypress(function(e){
		if(e.which == 13){
			$('#wcsSearchForm').submit();
	      }
	});

	$('#dateFrom').datepicker({
		showOn: "both",
		buttonImage: "/img/calendar.png",
		buttonImageOnly: true,
		dateFormat: 'dd.mm.yy'
	});

	$('#dateTo').datepicker({
		showOn: "both",
		buttonImage: "/img/calendar.png",
		buttonImageOnly: true,
		dateFormat: 'dd.mm.yy',
		beforeShow: function(input, inst) {
			$('#dateTo').datepicker('option','minDate',$('#dateFrom').val());
		}
	});
	
	$('#typeLabel').click(function() {
		$('#types').slideToggle("slow");
	});
/*
	$('#regionLabel').click(function() {
		$('#regions').slideToggle("slow");
	});
*/
	$('#datesLabel').click(function() {
		$('#dates').slideToggle("slow");
	});
	
	$('#searchBtn').click(function() {
		$('#wcsSearchForm').submit();
	});
	
	$.each($('input[name="type[]"]'), function(index, value) {
		if(!$(this).is(':checked')) {
			$('#types').show();
		}
	});
/*
	$.each($('input[name="region[]"]'), function(index, value) {
		if(!$(this).is(':checked')) {
			$('#regions').show();
		}
	});
*/
	$('.page').click(function() {
		$(location).attr('href',$(this).children().attr("href"));
	});
});

