﻿
$(function() {
    $('#gallery a').lightBox();

	InitLightBox();
});


function InitLightBox()
{
try{
        var sliderWidth = $("#slider li").length * ($("#slider li").width()+7);
        var galeryWidth = $("#gallery").css("width").replace('px', '');
        $("#slider").css("width", sliderWidth + 50)
    }catch(err){}
   
  

    $("#galeryGoLeft").click(function() {
	
       if ($("#slider").css("left").replace('px', '') < 0) {
            $("#slider").animate({ "left": "+=180px" }, "slow");
       }else{}
    }); 

    $("#galeryGoRight").click(function() {

        if ($("#slider").css("left").replace('px', '') > -(sliderWidth - galeryWidth)+8) {
            $("#slider").animate({ "left": "-=180px" }, "slow");
        }
        else { }
    });
    

}

