/* Apply fancybox to multiple items */




$(document).ready(function() {
	init();
});

function init() {
  /*Different approach for all pics on screen in one gallery   $("a.photo-thumbnail").attr('rel', 'gallery').fancybox({ */
  $("a.photo-thumbnail").fancybox({
	    'transitionIn':'elastic',
	    'transitionOut':'elastic',
	    'speedIn':600,
	    'speedOut':200,
	    'overlayShow':true,
	    'overlayOpacity': 0.7,
	    'overlayColor': '#000',
	    'titlePosition': 'over',
	    'onComplete':function() {
	    $("#fancybox-wrap").hover(function() {
		    $("#fancybox-title").show();
		}, function() {
		    $("#fancybox-title").hide();
		});
	    }
  });





  $(".youtubeVideo").click(function() {
	   $.fancybox({
		'padding' : 0,
		'autoScale' : false,
		'transitionIn' : 'none',
		'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;
       }); 

}



