/* ---------------------------------------------------------------------------------------
Author: 		Curtis Campbell
Updated: 		Feb.11.2011
Updated By: 	Curtis Campbell
--------------------------------------------------------------------------------------- */
/* Start the document Ready function
--------------------------------------------------------------------------------------- */
$(document).ready(function(){
	
/* Cycle
--------------------------------------------------------------------------------------- */	
	$('#images').cycle('fade');
	
/* Fancybox Script - RV Inventory Gallery
--------------------------------------------------------------------------------------- */
    /*
	$("a.fancybox").fancybox({
		'autoDimensions':	true,
		'titlePosition'	:	'over'
	});
    */
   $("a[rel=gallery]").fancybox({
		'autoDimensions'	: true,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
		}
	});


/* Fancybox Script - Make an Offer Form
--------------------------------------------------------------------------------------- */

	$("a.make-an-offer").fancybox({
		'autoDimensions':	true,
		'titleShow':		false,
		'padding':			10
	});
	
	$("a.send-to-friend").fancybox({
		'autoDimensions': 	true,
		'titleShow':		false,
		'padding':			10
	});

/* End the document Ready function
--------------------------------------------------------------------------------------- */
});
