$(document).ready(function(){
		var fs = [ "boarder.jpg", "couple.jpg", "in_flight.jpg", "lesson.jpg", "lutsen_gondolas.jpg", "lutsen_resort.jpg", "mtn_view.jpg", "on_slope.jpg", "skiing_family.jpg", "teen_group.jpg", "tubing_fast.jpg", "tubing_group.jpg", "tubing.jpg", "youngster.jpg" ];
		//$('#filmstrip').html('<img src="images/filmstrip/' + fs[1] + '" alt="" />');
		jQuery.each(fs, function(){
			$('#filmstrip').append('<div class="filmImg"><img src="images/filmstrip/' + this + '" alt="" /></div>');
		});
		
		function slideStrip(){
			var firstImage = $('#filmstrip').children().first();
			firstImage.clone().appendTo('#filmstrip');
			firstImage.animate({'bottom':firstImage.height(), 'margin-bottom':-firstImage.height()},1000,'swing', function(){
				firstImage.remove();
			});
		}
		setInterval(slideStrip, 5000);
		//end ready
	});
	
	$(function(){
		$('a[rel*=lightbox]').lightBox();
	});
