// custom window open
function openWindow(url,w,h,cl,ct,c,r,s) { // doc url, width, height, coordinates left, coordinates top, center?, resizeable?, scrollbars? 
	if (c) {
		sw = screen.width;
		sh = screen.height;
		cl = ((sw - w) / 2) - 20;
		ct = (sh - h) / 2;
	}
	popupWindow = window.open(url,"popupWindow","width="+w+",height="+h+",left="+cl+",top="+ct+",location=0,menubar=0,resizable="+r+",scrollbars="+s+",status=0,titlebar=0,toolbar=0");
	popupWindow.focus();
}

function showAction() {
	openWindow(base_static_dir+"images/filmanie.html","660","500","0","0","1","1","1")
}

$(document).ready(function(){
            
    // GALLERY
    $('.gallery a').fancybox({
        overlayOpacity: 0.7,
        overlayColor: '#000'
    });
        
});

