jQuery(document).ready(function() {
$("a[rel=example_group]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
		}
	});


$("#accordion4").msAccordion({defaultid:0, vertical:true, event:'click'});


$("a#single_image").fancybox({
		'titleShow'     : false
});

$("#iframe1").fancybox({
		   'width'		: '75%',
		   'height'		: '75%',
                   'autoScale'     	: false,
                   'transitionIn'	: 'none',
		   'transitionOut'	: 'none',
		   'type'		: 'iframe'
	});
$("#iframe2").fancybox({
		   'width'		: '75%',
		   'height'		: '75%',
                   'autoScale'     	: false,
                   'transitionIn'	: 'none',
		   'transitionOut'	: 'none',
		   'type'		: 'iframe'
	});


 


$("#video").fancybox({
	    'padding'           : 0,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});



$("a#lightbox").fancybox({
		'titleShow'     : false
	});



$(document).pngFix();




});