﻿$(document).ready(function(){
	$('#popup div.close_popup img').click(function(){
		// cf : doc: http://docs.jquery.com/How_jQuery_Works
		$('#popup').hide('slow');
		$('#exposeMask').hide('slow');
	});
	
	$('div#featured').innerfade({
        speed: 1000,
        timeout: 5000,
        type: 'random',
        containerheight: '315px'
    });
	$("#fancyboxframe").click(function() {
			$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: false,
				'width'			: 760,
				'height'		: 520,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
					'wmode'				: 'transparent',
					'allowfullscreen'	: 'true'
				}
			});

			return false;
		});
	$("#fancyboxvideo").click(function() {
			$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: false,
				'width'			: 760,
				'height'		: 520,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
					'wmode'				: 'transparent',
					'allowfullscreen'	: 'true'
				}
			});

			return false;
		});
	$("a[rel=photos_pneumaflex]").fancybox({
		'transitionIn' : 'none',
		'transitionOut' : 'none',
		'titlePosition' : 'over',
		'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Photo ' + (currentIndex + 1) + ' / ' + currentArray.length + ' - ' + title + '</span>';
		}
	});
	
	if($('#photos')) {
		$('#photos').galleryView({
				panel_width: 690,
				panel_height: 477,
				frame_width: 160,
				frame_height: 130
		});
	}
});
