$(document).ready(function() {
	$(".iframe").livequery(function(){
		// $(".iframe").fancybox({
		$(this).fancybox({
		'width' : '75%',
		'height' : '75%',
		'autoScale' : false,
		'transitionIn' : 'none',
		'transitionOut' : 'none',
		'type' : 'iframe'
		});
	});
	$("a[rel=example_group]").livequery(function(){
		// $(".iframe").fancybox({
		$(this).fancybox({
		'width' : '75%',
		'height' : '75%',
		'autoScale' : false,
		'transitionIn' : 'none',
		'transitionOut' : 'none',
		'type' : 'iframe'
		});
	});
}); 
