$(function() {
    if ($('#products').length > 0) {
        $('.longdesc', '#content').css({display:'none'});
        $('.download', '#content').css({display:'none'});
        $('.slider-more', '#content').click(function() {
            $(this).parents('.shortdesc').siblings('.longdesc').slideToggle();
            return false;
        });
        $('.slider-download', '#content').click(function() {
            $(this).parent().siblings('.download').slideToggle();
            return false;
        });
        $('.download a[href$=".pdf"]').parent().addClass('pdf')
            .end().click(function() {
                $(this).attr('target', '_blank');
            });
    }
    $('.lightbox').fancybox();
    $('#topnav').superfish();
    multimenu();
    getCaptcha();
    goToSelect();
})

function getCaptcha() {
    $('.captcha_refresh', '#content').click(function() {
        var img = $('.captcha_image');
        var now = new Date();
        var newSrc = img.attr('src') + '/' + now.getTime();
        img.attr('src', newSrc);
    })
}

function multimenu() {
    $('#topnav li a').each(function() {
        var $this = $(this);
        var $li = $this.siblings('ul').children('li');
        if ($li.length > 1) {
            $value = $(this).text();
            $span = '<span>' + $value + '</span>';
            $(this).after($span);
            $(this).remove();
        } else {
            $this.attr('href', $li.find('a').attr('href'));
            $li.parent().remove();
        }
    })
} 

function goToSelect() {
    $('#categorylist select').change(function() {
        window.location.href = $(this).val();
    })
}

function zyczenia(){
	var w=screen.width;
	var h=screen.height;
	var x=0;
  	var y=0;
	features="scrollbars=0,width="+w+",height="+h+",left="+x+",top="+y;
  	win=window.open("http://ptg86.org/adwswieta/adw.html","zyczenia",features);
  	win.window.focus();
}
