var fancy = new function() {
	
	this.id = 'zoomImg';
 
    this.init = function() {
		$(document).ready(function() {
			$("a#zoomImg").fancybox({
			'titleShow'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none'
			});
		});
	};
	
	this.load = function(file ) {
		
		var j1 = this.browser(this.id );
		j1.href = file;
		$('a#' + this.id ).trigger('click');
	};
	
	this.browser = function(movieName ) {
		
		// Provides the proper address for the movie depending on browser
		var isIE = navigator.appName.indexOf("Microsoft") != -1;
		return (isIE) ? window[movieName] : document.getElementById(movieName );
	};
};

/*
function loadFancyBox() {
	
	$(document).ready(function() {
	
		$("a#zoomImg").fancybox({
		'titleShow'		: false,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none'
		});
	});
}//loadFancyBox

function zz(file ) {
	
	var j1 = getFlashMovie('zoomImg');
	j1.href = file;
	$('a#zoomImg').trigger('click');
  
}//coelhoDaCartola

// Provides the proper address for the movie depending on browser
function getFlashMovie(movieName) {
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	return (isIE) ? window[movieName] : document.getElementById(movieName );
}//getFlashMovie
*/
