// jQuery FancyBox

	$(document).ready(function() {

		$("a.products_picture").fancybox({
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'overlayColor'		: '#333',
			'overlayOpacity'	: 0.6,
			'padding'		: 0,
			'centerOnScroll'	: true,
			'1titlePosition' 	: 'outside',
			'1titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">[' + (currentIndex + 1) + '/' + currentArray.length + ']' + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});

		$("a.events_image").fancybox({
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'overlayColor'		: '#000',
			'overlayOpacity'	: 1,
			'padding'		: 0,
			'centerOnScroll'	: true,
			'titlePosition' 	: 'outside',
			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-inside">' + (currentIndex + 1) + '/' + currentArray.length + '</span>';
			}
		});

		$("a.products_video3d").fancybox({
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'width'			: 450,
			'height'		: 450,
		        'autoScale'     	: false,
			'padding'		: 5,
			'centerOnScroll'	: true,
			'overlayColor'		: '#333',
			'overlayOpacity'	: 0.6
		});

		$("a[rel=gallery_picture]").fancybox({
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'overlayColor'		: '#000',
			'overlayOpacity'	: 1,
			'padding'		: 0,
			'centerOnScroll'	: true,
			'titlePosition' 	: 'outside',
			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-inside">' + (currentIndex + 1) + '/' + currentArray.length + '</span>';
			},
			'1titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">[' + (currentIndex + 1) + '/' + currentArray.length + ']' + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});

		$("a.gps").fancybox({
			'width'			: '85%',
			'height'		: '90%',
		        'autoScale'     	: false,
        		'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'centerOnScroll'	: true,
			'type'			: 'iframe'
		});

		$("a.newsletter").fancybox({
			'width'			: 640,
			'height'		: 480,
		        'autoScale'     	: false,
        		'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'centerOnScroll'	: true,
			'type'			: 'iframe'
		});

		$("#dealersmenu").fancybox({
			'width'			: 640,
			'height'		: 440,
			'padding'		: 40,
		        'autoScale'     	: false,
			'centerOnScroll'	: true,
			'showCloseButton'	: false,
			'titlePosition'		: 'inside',
			'transitionIn'		: 'none',
			'transitionOut'		: 'none'
		});

	});


