
$(document).ready(function() {

	
	$("a#movielink").fancybox({
	    'padding': 10,
        'easingIn': 'swing',
        'easingOut': 'swing',
        'width': 560,
        'height': 340,
        'overlayShow': true,
        'overlayOpacity': 0.3,
        'overlayColor': '#666',
        'enableEscapeButton': true,
        'showCloseButton': true,
        'hideOnOverlayClick': true,
        'hideOnContentClick': true,
        'centerOnScroll': true
	});
	
	$("#movielinkYT").click(function() {
	    $.fancybox({
	        'padding': 10,
	        'easingIn': 'swing',
            'easingOut': 'swing',
            'overlayShow': true,
            'overlayOpacity': 0.3,
            'overlayColor': '#666',
            'enableEscapeButton': true,
            'showCloseButton': true,
            'hideOnOverlayClick': true,
            'hideOnContentClick': false,
            'centerOnScroll'    : true,
		    'autoScale'		    : false,
		    'transitionIn'	    : 'none',
		    'transitionOut'	    : 'none',
		    'title'			    : this.title != null ? this.title : "",
		    'autoDimensions'    : true,
		    'href'			    : this.href != null ? this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') : "",
		    'type'			    : 'swf',
		    'swf'			    : {
		        'wmode'		        : 'transparent',
		        'allowfullscreen'	: 'true'
			    }
	        });
	    return false;
    });


	
	$("#movielinkVI").click(function() {
	    $.fancybox({
	        'padding': 10,
	        'easingIn': 'swing',
            'easingOut': 'swing',
            'width': 550,
            'height': 300,
            'overlayShow': true,
            'overlayOpacity': 0.3,
            'overlayColor': '#666',
            'enableEscapeButton': true,
            'showCloseButton': true,
            'hideOnOverlayClick': true,
            'hideOnContentClick': false,
            'centerOnScroll'    : true,
		    'autoScale'		    : false,
		    'transitionIn'	    : 'none',
		    'transitionOut'	    : 'none',
		    'title'			    : this.title != null ? this.title : "",
		    'autoDimensions'    : false,
		    'href'			    : this.href != null ? this.href : "",
		    'type'			    : 'swf',
		    'swf'			    : {
		        'wmode'		        : 'transparent',
		        'allowfullscreen'	: 'true'
			    }
	        });
	    return false;
    });
	

    $("a[rel=fbgroup]").fancybox({
        'padding': 10,
        'easingIn': 'swing',
        'easingOut': 'swing',
        'width': 560,
        'height': 340,
        'overlayShow': true,
        'overlayOpacity': 0.3,
        'overlayColor': '#666',
        'enableEscapeButton': true,
        'showCloseButton': true,
        'hideOnOverlayClick': true,
        'hideOnContentClick': true,
        'centerOnScroll': true
	});
	
});
