		$(document).ready(function() {
			/*
			*   images
			*/
 
			$(".tip7").fancybox({
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'titlePosition' 	: 'inside',
				'cyclic'			: true,
				'speedIn' 			: 500,
				'speedOut'			: 500,
				'overlayColor'		: '#006600',
                'overlayOpacity'	: 0.6,
				'centerOnScroll'	: true,
				'autoScale'			: true,
				'showCloseButton'	: false,
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
    return '<div id="tip7-title"><span><a href="javascript:;" onclick="$.fancybox.close();"><img src="fancybox/closelabel.gif" border="0"/></a></span>'/* + (title && title.length ? '<b>' + title + '</b>' : '' ) */+ '' + (currentIndex + 1) + ' di ' + currentArray.length + '</div>';
}
			});
			
			$("#inline").fancybox({
				'titlePosition'				:'outside'
			});
			$("#inline2").fancybox({
				'titlePosition'				:'outside',
				'overlayColor'				:'#0153b8'
			});
 
			$("#various3").fancybox({
				'width'				: '90%',
				'height'			: '100%',
				'autoScale'			: true,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'speedIn' 			: 300,
				'speedOut'			: 300,
				'centerOnScroll'	: true,
				'overlayColor'		: '#006600',
                'overlayOpacity'	: 0.6
			});
			
			$("#various4").fancybox({
				'width'				: '90%',
				'height'			: '100%',
				'autoScale'			: true,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'speedIn' 			: 300,
				'speedOut'			: 300,
				'centerOnScroll'	: true
			});
			
			$("a[rel=footer_group]").fancybox({
				'width'				: '90%',
				'height'			: '90%',
				'autoScale'			: true,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'speedIn' 			: 300,
				'speedOut'			: 300,
				'centerOnScroll'	: true,
				'showNavArrows'		: false
			});
			
			$("a[rel=frame_group]").fancybox({
				'width'				: '90%',
				'height'			: '90%',
				'autoScale'			: true,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'speedIn' 			: 300,
				'speedOut'			: 300,
				'centerOnScroll'	: true,
				'showNavArrows'		: false
			});
			
			$("#img_gen").fancybox({
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'titlePosition' 	: 'outside',
				'centerOnScroll'	: true,
				'autoScale'			: true
				
			});
			
			$("#yt").click(function() {
			$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'fade',
			'transitionOut'	: 'fade',
			'title'			: this.title,
			'width'			: 400,
			'height'		: 325,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			'wmode'			: 'transparent',
			'allowfullscreen': 'true'
			}
		});

	return false;
});
		});