$(document).ready(function(){

    $("a[rel*=external]").attr( "target", "_blank");

	$('a[rel=youtube]').fancybox({
		'width'				: '60%',
		'height'			: '75%',
		'overlayColor' : '#000',
        'autoScale'     	: false,
		'transitionIn' : 'elastic',
		'transitionOut'	: 'elastic',
		'type'				: 'iframe'
	});

	$('.youtube').hover(function() {	$(this).find('.play').stop(true, true).animate({opacity: "show"}, 400) } , function() { $(this).find('.play').animate({opacity: "hide"}, "normal") });
	
	$('.youtube').hover(function() {	$(this).find('.playmini').stop(true, true).animate({opacity: "show"}, 400) } , function() { $(this).find('.playmini').animate({opacity: "hide"}, "normal") });
	
	$('.gallery').fancybox({
		'overlayShow' : true,
		'overlayColor' : '#000',
		'overlayOpacity'	: 0.8,
		'transitionIn' : 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition' : 'over',
		'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">รูปที่ ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
});


