function show(div){
	if(document.getElementById(div).style.display=='none') {
		$(document.getElementById(div)).fadeIn("slow");
	}else{
		$(document.getElementById(div)).fadeOut("slow");	
	}
};
//(document).ready(function() {
$(function() {

	/* Apply fancybox to multiple items */
	
	$("a.iframe").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
});

