jQuery(document).ready(function() {	

	$("a[rel=fancybox_group]").fancybox({
		'autoDimensions' : true,
		'centerOnScroll' : true, 
		'cache'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	$("a[rel=fancybox]").fancybox({
		'autoDimensions' : true,
		'centerOnScroll' : true, 
		'cache'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over'
	});
	
	$("a[rel=fancybox_iframe]").fancybox({
		'width'			: 600,
		'height'			: 365,
		'autoDimensions'	: false,
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'speedIn'		: 400, 
		'speedOut'		: 200,
		'overlayShow'	: true,
		'autoScale'		: false,
		'type'			: 'iframe',
		'scrolling'		: 'no',
		'padding'		: 10,
		'titleShow'		: false
	});
	
	// Main navigation dropdowns
	$('ul.sf-menu').superfish({
		delay:       1000,                            // one second delay on mouseout
		animation:   {height:'show'},  // fade-in and slide-down animation 
		speed:       100,                         // faster animation speed
		autoArrows:  false,                           // disable generation of arrow mark-up
		dropShadows: false                           // disable drop shadows
	});
	
	
});
