//Scripts 共用Function
function openFlashbox(url){
	$.fancybox({
            'padding'       : 0,
			'margin'		: 0,
			'scrolling'		: 'no',
            'autoScale'     : false,
			'autoDimensions': true,
            'transitionIn'  : 'none',
            'transitionOut' : 'none',
            'title'         : this.title,
			'width'			: 954,
			'height'		: 466,
			'opacity'		: true,
			'overlayOpacity': 0.8,
			'overlayColor'	: '#666',
            'href'          : 'image/954x466.swf',
            'type'          : 'swf',
            'hideOnOverlayClick': false,
            'onClosed'      : function() {
			
			}
	});
	
    return false;
}

