
//főoldali galéria
    $(document).ready(function() {
        
		$(".scrollable").scrollable({size: 2, speed: 400}).circular().mousewheel();
        
        var n=0;
        var maxn=9;    
        
        $(".pageUp").click(function(){
            if(n<maxn){
                n++;
                $(".items2").animate({"top":"-=90"});
            }
        });      

        $(".pageDown").click(function(){
            if(n>0){
                n--;
                $(".items2").animate({"top":"+=90"});
            }
		});

	   $('.lightbox').lightBox({
		overlayBgColor: '#100e27',
		overlayOpacity: 0.8,
		imageLoading: 'loading.gif',
		imageBtnClose: 'img/gallery_close.gif',
		imageBtnPrev: 'img/gallery_prev.gif',
		imageBtnNext: 'img/gallery_next.gif',
		containerResizeSpeed: 350,
		txtOf: '&#0187;'
	   });
        
});






    function setCookie(name,data) {
        $.cookie(name, data, { expires: 60 });
    }
        
    function getCookie(name) {
        if($.cookie(name)!=null){
            return $.cookie(name);
        }else{
            return "30-true";
        }
    }
        
    function delCookie(name) {
        $.cookie(name, null);
    }