jQuery.noConflict();
	jQuery(document).ready(function() {
		
	   	jQuery("#content a.iframe").fancybox({
    		'autoDimensions': false,    		
    		'scrolling': 'no',
    		'overlayColor': '#000',
    		'overlayOpacity': .5,
    		'titleShow': true,
    		'width': 980,
    		'height': 600,
    		'onClosed': showFlash
      	});
    	
    	jQuery("#content a.iframe").click(hideFlash)
    	
    	function hideFlash() {jQuery("#content object").css('visibility','hidden')}
    	function showFlash() {jQuery("#content object").css('visibility','visible')}    	
    	
    });
(jQuery);
