/* :::::::::::::::::::: Photo Gallery :::::::::::::::::::: */ // ■■■■■■■■■■■■■■■■■■■■■■■■■■■■ // Open Gallery // ■■■■■■■■■■■■■■■■■■■■■■■■■■■■ function open_gallery(imgURL){ if( $roomDIV.length <= 1 || $(window).width() < 800 ){ document.getElementById("popup_pic").src = imgURL; document.getElementById("photo").style.display = ""; for(i=0; i<=10; i++){ setTimeout("document.getElementById('photo').style.opacity='" + (i/10) + "';", i*30); setTimeout("document.getElementById('photo').style.filter='Alpha(opacity=" + (i*10) + ")';", i*30); } } } function close_gallery(){ for(i=0; i<=10; i++){ setTimeout("document.getElementById('photo').style.opacity='" + (10-i)/10 + "';", i*30); setTimeout("document.getElementById('photo').style.filter='Alpha(opacity=" + (10-i)*10 + ")';", i*30); } setTimeout("document.getElementById('photo').style.display='none';", 10*30); document.getElementById("bu_next").style.zIndex = "5000"; document.getElementById("bu_prev").style.zIndex = "5000"; document.getElementById("popup_pic").style.zIndex = "1"; } $(function(){ $roomLinks = $('.column.layout dd a'); $roomDIV = $('.column.magazine div'); if( $roomDIV.length > 1 ) { $roomDIV.hide(); $roomDIV.eq(0).show(); $roomLinks.click(function(){ if( $roomDIV.eq($(this).index() - 1).css('display') == 'none' ){ $roomDIV.hide(); $roomDIV.eq($(this).index() - 1).fadeIn(); } }); } });