jQuery(document).ready(function() {
	
	
	/* Auto-Select all pics */
	
	var select = $('a[href$=".bmp"], a[href$=".gif"], a[href$=".jpg"], a[href$=".jpeg"], a[href$=".png"], a[href$=".BMP"], a[href$=".GIF"], a[href$=".JPG"], a[href$=".JPEG"], a[href$=".PNG"]');

    select.attr('rel', 'fancybox');

    select.fancybox();


	/* Events Iframe id="iframeev" */
		
	$(".iframeev").fancybox({
		'width'				: 670,
		'height'			: 500,
        'autoScale'     	: false,
        'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'type'				: 'iframe',
		'easingIn' 			: 'easeOutBack',
	    'easingOut' 		: 'easeInBack',
		'overlayOpacity'	: 0.3
	});
	
	
	/* YouTube */
	
	$("yt").click(function() {
			$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'			: 680,
				'height'		: 495,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
				'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
				}
			});

			return false;
		});
		
		
	/* VIMEO */
	
	$("vimeo").click(function() {
			$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'			: 680,
				'height'		: 495,
				'href'			: this.href.replace(new RegExp("[0-9]", "i"), 'moogaloop.swf?clip_id=1'),
				'type'			: 'swf'
			});

			return false;
		});
	
		
	
	

});

