
function do_height() {

		var is_opera = navigator.userAgent.indexOf("Opera")

		var width_content = (document.getElementById("rootLYR").offsetWidth < 981) ? '980px' : '100%';
		if (is_opera != 0) {
			document.getElementById("widthLYR").style.width = width_content;
		}
}

function load_setup() {
	
	do_height();	
}

$(document).ready(function(){
    $('.overlay-click').each(function(){
        $(this).find('td').overlay({
            mask: {
               color: '#000',
               loadSpeed: 200,
               opacity: 0.7
            },
            top: 270,
            closeOnClick: true,
            closeOnEsc: true,
            target: '#'+ $(this).attr('data-container')
        });
    });
});
