﻿// JScript File
jQuery(document).ready(function() {

			jQuery("a[rel=example_group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Imagen ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
			
			
			jQuery("#various1").fancybox({
				'titlePosition'		: 'inside',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});
			
	        jQuery("#reportarProblemas").fancybox({
				        'titlePosition'		: 'inside',
				        'transitionIn'		: 'none',
				        'showCloseButton'	: false,
				        'transitionOut'		: 'none'
			        });
        			
	        jQuery("#various2").fancybox({
				        'titlePosition'		: 'inside',
				        'transitionIn'		: 'none',
				        'transitionOut'		: 'none'
			        });			
        								        
			        jQuery("a#inline").fancybox({
		'hideOnContentClick': false
	});
	
	
	  jQuery("a#inline2").fancybox({
	    'frameWidth'            : 600,
        'frameHeight'            : 450,
		'hideOnContentClick': false
	});
	

 jQuery("a.overlay-flash").fancybox({
 'padding'                : 0,
 'zoomOpacity'            : true,
 'zoomSpeedIn'            : 500,
 'zoomSpeedOut'            : 500,
 'overlayOpacity'        : 0.75,
 'frameWidth'            : 530,
 'frameHeight'            : 400,
 'hideOnContentClick'    : false
 });

				        					
			
			
		});


