$(document).ready(function () { 
	/*------- .popup ---------*/
    $("a.popup").attr({
        target: '_blank'
    }); 
	/*-------- .colorbox --------*/
    $(".colorbox").colorbox({
        transition: "elastic",
        next: "Další",
        previous: "Předchozí",
        current: "{current} / {total}",
        close: "Zavřít",
        maxHeight: "800px",
        slideshow: true,
        slideshowAuto: false,
        opacity: 0.8
    });
    $(".colorbox-iframe").colorbox({
        width: "80%",
        height: "80%",
        iframe: true,
        transition: "elastic",
        next: "Další",
        previous: "Předchozí",
        current: "{current} / {total}",
        close: "Zavřít",
        opacity: 0.8
    });
	/*------- .header-menu ---------*/
    $('.header-menu').each(function () {
        $('li:has(.submenu)', this).hover(
        function () {
            $('>a', this).addClass('select');
            $('>.submenu', this).stop().css({
                'height': '',
                'overflow': '',
                'display': ''
            }).slideDown(100);
        }, function () {
            var $this = $(this);
            $('>.submenu', this).stop().slideUp(100, function () {
                $this.find('>a').removeClass('select');
            });
        });
    }); 
	/*------- Corners ---------*/
    $('.pager .counter').corner("3px"); 
	/*------- Tables ---------*/
    //$('table.list tbody tr:odd th, table.list tbody tr:odd td').css('background', '#f1f1f1');
    //$('.detail-desc-list dl.table dt:even, .detail-desc-list dl.table dd:even').css('background', '#f8f8f8'); 
	/*------- Forms ---------*/
    //$('select').fakeSelect();
    //$('input[type=checkbox], input[type=radio]').prettyCheckboxes(); 
	/*------- Tabs ---------*/
    $(".tabs").tabs(".block-content > .tab-content");
    $("#header .subtabs, .block-detail .col-2 .subtabs").tabs(".subtabs-content > .tab-content");
});
