// JavaScript Document
$(function() {
	$("div#showcase").smoothDivScroll({
		ScrollStep: 1,
		ScrollInterval: 100,
		visibleHotSpots: "always"
	});
	$("div#salesroom").smoothDivScroll({
		ScrollStep: 1,
		ScrollInterval: 100,
		visibleHotSpots: "always"
	});
});

$(document).ready(function() {
	$("a.showImage").fancybox({
		'overlayOpacity'	: '0.6',
		'overlayColor'		: '#333333',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'outside',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
});
