﻿$(function() {

$('.product .photo a').lightBox({fixedNavigation:true});
$('.product3 .photo3 a').lightBox({fixedNavigation:true});
$('.product2 .photo2 a').lightBox({fixedNavigation:true});
$('.product3 .photo3 .minis a').lightBox({fixedNavigation:true});  }); 


$(document).ready(function () {
 if($(document).width() > 1200 )
 {
 var r = ($('#top').height()+$('#container').height()+$('copyright').height())/210;
 $('div.test #left').css("height", (parseInt(r))*210);
 $('div.test #right').css("height", (parseInt(r))*210);
 $('#test').css("display","block");
 $('div.test #left').css("right", 820);
 $('div.test #right').css("left", 820);
 }else {
 $('#test').css("display","none");
 }
 });
 $(window).resize(function () {
 if($(document).width() > 1200 )
 {
 var r = ($('#top').height()+$('#container').height()+$('copyright').height())/210;
 $('div.test #left').css("height", (parseInt(r))*210);
 $('div.test #right').css("height", (parseInt(r))*210);
 $('#test').css("display","block");
 $('div.test #left').css("right", 820);
 $('div.test #right').css("left", 820);
 }else {
 $('#test').css("display","none");
 }
 });