$(document).ready(function(){
    /*
    * Галерея картинок на странице компании
    */
    $(".gallery a").fancybox({
        'onComplete': function() {
            $("#fancybox-wrap").click(function() {
                $.fancybox.next();
            });
        }
    });
});
/* меню */
function menuOver (obj)
{
	obj.className = "menu_off_over";
}

function menuOut(obj)
{
	obj.className = "menu_off";
}

function cImg(obj, img)
{
	obj.style.position = 'relative';
	
	if (!document.getElementById('imgLeer'))
	{
		var imgLeer = document.createElement('div');
		imgLeer.id = 'imgLeer';
		document.body.appendChild(imgLeer);
	}
	else
	{
		var imgLeer = document.getElementById('imgLeer');
	}
	
	imgLeer.innerHTML = '';
	imgLeer.border = 1;
	imgLeer.style.position = 'absolute';
	imgLeer.style.width = 2;
	imgLeer.style.height = 2;
	imgLeer.style.backgroundColor = "#464646";
	imgLeer.style.border = '2px solid #c0c0c0';
	imgLeer.style.padding = 10;
	imgLeer.style.visibility = 'visible';
	imgLeer.style.display = 'block';
	
	var newImg = document.createElement('img');
	newImg.src = 'http://'+host+'/html/img/'+img;
	newImg.style.border = '2px solid #E9E9E9';
	newImg.className = 'hand';
	newImg.alt = 'Закрыть';
	newImg.attachEvent('onclick', cClose);
	document.getElementById('imgLeer').appendChild(newImg);
	
	//newImg.properties();
	
	imgLeer.style.width = newImg.width + 5;
	imgLeer.style.top = document.body.scrollTop + 5;
	//imgLeer.style.left = (screen.width - newImg.width)/2;
	//if (imgLeer.style.left > 100) 
	imgLeer.style.left = 20;
	
}

function cClose()
{
	var imgLeer = document.getElementById('imgLeer');
	imgLeer.style.visibility = 'hidden';
	imgLeer.style.width = 0;
	imgLeer.style.height = 0;
	imgLeer.style.left = 0;
}
