var s = 0;
$(document).ready(function()	{

    $('.imgbox div').css('width',($('.imgbox p').length)*155);
    $('.imgbox span.r').click(function(){
          s = s - 155;
          $('.imgbox div').animate({marginLeft:s},'slow');
          if ((0-s+775)>($('.imgbox p').length)*155){$('.imgbox div').stop().animate({marginLeft:0},'slow'); s=0;} 
    })
    
    $('.imgbox span.l').click(function(){
          s = s + 155;
          $('.imgbox div').animate({marginLeft:s},'slow');
          if (s>0) {$('.imgbox div').stop().animate({marginLeft:0},'slow'); s=0;} 
    })
$("a[href$=jpg],a[href$=png],a[href$=gif]").lightBox({fixedNavigation:false});
				})
