/**
 * Czech TV header
 *
 * @version 0.5
 */
$(document).ready(function() {
	var headerCzechTVDropDownList = $("#headerCzechTVDropDownList");

	// drop down switch
	$("#headerCzechTVDropDownSwitch").click(function(event) {
		event.preventDefault();
		$(this).blur();
		if (headerCzechTVDropDownList.is(":hidden")) {
			headerCzechTVDropDownList.slideDown("fast");
		}
	});
	$(document.body).click(function() {
		if (headerCzechTVDropDownList.is(":visible")) {
			headerCzechTVDropDownList.hide();
		}
	});
});