
 $(document).ready(function(){
  $('a[rel="menuLink"]').colorbox({
      		transition:'fade',
      		current : '',
		opacity: 0.8
      		}); 

  $('.thumbHolder').each(function(){
	var holderSize = $(this).children('.thumb').length * 120;
	$(this).css({'width': holderSize + 'px'});
  });

  $('.leftArrow').click(function(){
    if ($(this).next().children('.thumbHolder').position().left < 0){
    $(this).next().children('.thumbHolder').stop().animate({'left':'+=440px'},'slow','swing');
  }});

  $('.rightArrow').click(function(){
    var thumbDiv = $(this).prev().children('.thumbHolder');
    if (thumbDiv.position().left > -1*thumbDiv.innerWidth() + 900){
    $(this).prev().children('.thumbHolder').stop().animate({'left':'-=440px'},'slow','swing');
  }});

  $('.thumb').click(function(){
        $('.loader').delay(500).css({'left':'395px'});
	$('#mainImage').attr('src',$(this).attr('name')).load(function(){$('.loader').css({'left':'-9999px'})});
	$('#caption').text($(this).attr('alt'));
  });
 
 });

