// Foto's weergeven bij mouseover
function photo(photo_id) {
	var image = new Image;

	if (photo_id == 0) { // Default voor mousedown
		image.src = '/images/visuals/opslag.jpg';
	}
	else {
		image.src = '/images/opslag/fullsize/foto_' + photo_id + '.jpg';
	}

	document.picture.src = image.src;
}

// Commercial
$(document).ready(function() {
	$('#preview').fancybox({
		zoomSpeedIn: 300,
		zoomSpeedOut: 300,
		centerOnScroll: true,
		overlayOpacity: 0.8,
		overlayColor: '#000000',
		titleShow: false,
		padding: 5,
		width: 480,
		height: 290,
		href: '/commercial/commercial_pfauth.swf',
		type: 'swf'
	});
});
