// JavaScript Document

$(document).ready(function () {

	// External Links & Files
	$('a[href^="http://"], a.file').click(function() {
		this.target="_blank";
	});

	// Fancybox
	$('a.popup, a.gallery').fancybox({
		'centerOnScroll': true,
		'hideOnContentClick': true,
		'showTitle': false,
		'overlayColor': '#000',
		'overlayOpacity': 0.5
	});

	// Calculation: Date Picker
	$("#frmcalculationForm-date").datepicker({
		dateFormat: 'dd.mm.yy',
		firstDay: 1,
		yearRange: '-00:+10',
		minDate: 'dd.mm.yy',
		maxDate: '+10y',
		changeMonth: true,
		changeYear: true,
		showButtonPanel: true,
		showOtherMonths: true,
		selectOtherMonths: true,
		hideIfNoPrevNext: false,
		showAnim: 'fadeIn',
		monthNamesShort: ['Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen', 'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec'],
		currentText: 'Dnes'
	});

	// Scroll Window to Errors
	if ($('ul.error').length) {
		$.scrollTo($('ul.error'), 'slow');
	}

});

