$(document).ready(function(){
	//footer
	$('#foot-ochrana').hide();
	$(".ochrana-footer-p").mouseover(function() {
		$('#foot-hotel').hide();
		$('#foot-atrakce').hide();
		$('#foot-aktivity').hide();
		$('#foot-ochrana').show();
	});
	$('.ochrana-footer-p').mouseout(function() {
		$('#foot-ochrana').hide();
		$('#foot-hotel').show();
		$('#foot-atrakce').show();
		$('#foot-aktivity').show();
	});
	//page form rezervace
	$(".web-form-ochrana-tab").hide();
	$('.web-form-ochrana-a').mouseover(function() {
		$('.web-form-ochrana-tab').show();
	});
	$('.web-form-ochrana-a').mouseout(function() {
		$('.web-form-ochrana-tab').hide();
	});
	//page form novinky-mailem
	$(".web-form-novinky-mailem-tab").hide();
	$('.web-form-novinky-mailem-a').mouseover(function() {
		$('.web-form-novinky-mailem-tab').show();
	});
	$('.web-form-novinky-mailem-a').mouseout(function() {
		$('.web-form-novinky-mailem-tab').hide();
	});
});
