$(document).ready(function() {
	// NAVIGATION
	/*$('#navigation ul').superfish({
		delay:       500,                            // one second delay on mouseout 
		animation:   {height:'show'},  // slide-down animation 
		speed:       'fast',                          // faster animation speed 
		autoArrows:  false,                           // disable generation of arrow mark-up 
		dropShadows: false                            // disable drop shadows 
	});*/
	
	// EXPLORE POLYPIPE POP-UP
	$('#explore').hide();	
	// Zebra List
	$('#explore div ul').each(function() {
		$(this).children('li:even').addClass('odd');
	});	
	// Li rollover
	$('#explore div ul li').hover(
		function() {
			$(this).find('ul').slideDown('fast');
		},
		function() {
			$(this).find('ul').delay(50).slideUp('fast');
		}
	);	
	// Open
	$('.explore').click( function() {
		$('#explore').fadeIn();
	});
	// Close
	$('#explore .close').click( function() {
		$('#explore').fadeOut();
	});
	
	// Fancybox Setup	
	$("a.fancybox").fancybox({
		'overlayOpacity': 0.7,
		'overlayColor': '#0b2853',
		'titlePosition': 'over',
		'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}
	});

	
});

