// JavaScript Document

$(function() {
	$("#video").imagebox({
		'transitionIn' : 'elastic',
		'padding' : 0,
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.7,
		'autoScale' : false,
		'transitionOut' : 'fade',
		'width' : 640,
		'height' : 385,
		'type' : 'swf'
	});
	$("a[rel=group1]").imagebox({
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'titlePosition' 	: 'over',
			'overlayColor'		: '#000',
			'overlayOpacity'	: 0.7,
			'padding'			: '0',
			'margin'			: '0',
			'type'				: 'image',
			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="imagebox-title-over">Foto  ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';}
	});	
	$("a[rel=group2]").imagebox({
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'titleFormat' 		: 'null',
			'overlayColor'		: '#000',
			'overlayOpacity'	: 0.7,
			'padding'			: '0',
			'margin'			: '0',
			'type'				: 'image',
			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="imagebox-title-over">Foto  ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';}
	});	
});
