﻿$(document).ready(function() {    
		$("a[rel=gallery]").fancybox({
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'titlePosition' 	: 'over',
			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});
		
		
		
        $(".box").fancybox({
		    'autoScale'			: true,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe',
			'width'             : 410,
			'height'            : 410	
		});	  
		
		$(".box2").fancybox({
		    'autoScale'			: true,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe',
			'width'             : 755,
			'height'            : 465	
		});	  
	
		
		$("#myForm").bind("submit", function() {     
		    $.ajax({         
		            type        : "POST",         
		            cache       : false,         
		            url         : "email-submit.asp",         
		            data        : $(this).serializeArray(),         
		            success: function(data) {             
		                $.fancybox(data);         
		            }     
		           });     
        return false; 
        }); 
		
		
		
	});
	function fancybox_close(){
    $('#fancy_outer').hide();
    $('#fancy_overlay').hide();
    $('#fancy_title').hide();
    $('#fancy_loading').hide();
    $('#fancy_ajax').remove();
    
    
    
    
    
    

}
