$(document).ready(function(){
    $('.galery_item .photoItem a').lightBox();
    $('#main a.mapEn').lightBox();
	$('.item .photo a').lightBox();
	$('.gal_gal .gal_new a').lightBox();
	
	
	
	
	 $('.c1 .gal_gal .gal_new').hover(
        function(){
            $(this).css("z-index", "100");
            $('img', this).css({
				'top': '-20px',
                'left': '-20px',
                'height': '150px'
            })
        },
        function(){
            $(this).css("z-index", "0");
            $('img', this).css({
                'top': '0px',
                'left': '0px',
                'height': '124px'
            })
        }
    )
})
