
$(document).ready(function() {
 $("#theProp").click(function() {
		$.fancybox([
			{
    'href' : '/the_propeller/prop_1.jpg',
    'title' : 'Unloading the truck.'
   },
			{
    'href' : '/the_propeller/prop_2.jpg',
    'title' : 'How do you open this thing?.'
   },
   {
    'href' : '/the_propeller/prop_3.jpg',
    'title' : 'Just how many boxes are there?.'
   },
   {
    'href' : '/the_propeller/prop_4.jpg',
    'title' : 'Three boxes, a job well done.'
    },
   {
    'href' : '/the_propeller/prop_5.jpg',
    'title' : 'Now lets take a look.'
    },
   {
    'href' : '/the_propeller/prop_6.jpg',
    'title' : 'Must be more fasteners to unfasten.'
   },
   {
    'href' : '/the_propeller/prop_7.jpg',
    'title' : 'Making some progress'
   },
   {
    'href' : '/the_propeller/prop_8.jpg',
    'title' : 'The unveiling of the propeller - at least in part.'
   }, 
   {
    'href' : '/the_propeller/prop_9.jpg',
    'title' : 'A better view of the contents.'
   },
   {
    'href' : '/the_propeller/prop_10.jpg',
    'title' : 'It all goes back in the box until assembly time.'
   }
		], {
			'padding'			    : 0,
			'transitionIn'		: 'none',
			'transitionOut'	: 'none',
			'type'          : 'image',
   'titlePosition' : 'inside',
			'changeFade'    : 0
		});
});
});


