/*-------- Zalozky --------*/
$(function () {
    var tabContainers = $('div#content-lang > div');
    $('div#content-lang ul.select-lang a').click(function () {
        tabContainers.hide().filter(this.hash).fadeIn("fast");
        $('div#content-lang ul.select-lang a').removeClass('selected');
        $(this).addClass('selected');
        return false;
    }).filter(':first').click();
});

$(document).ready(function(){
	/*------- popup ---------*/
	$('a').filter(function() {
  		return this.hostname && this.hostname !== location.hostname;
	}).attr({target:'_blank'});
	/*-------- Colorbox --------*/
	$(".colorbox").colorbox(transition = "fade");
	$(".colorbox-map").colorbox({width:"80%", height:"80%", iframe:true});
	$(".colorbox-iframe").colorbox({width:"560px", height:"450px", iframe:true});
	
	$(".box-highlight ul li:even").css("color", "#9c9767");
	
	$("#login-box").append("<img class='icon' src='images/icon-login-box.gif'/>");

  $(".odd tr:odd").addClass('odd');
  
  $("#contact-form input[type=text]").focus(function(){
    $("#contact-form #submit-area").slideDown();
  });

	$(".captcha input").addClass('required');
	
});


