//$(document).ready(
//    function()
//    {
//    	initializeFancyBox();
//    });



function initializeWebSiteFancyBox() {
// $(document).ready(function() {
			

            $('a.fancyboxwindowcss').each(function(){
                var width = $(window).width()*0.9;
                var height = $(window).height()*0.9;
//                alert(this);
		        $(this).fancybox({
				'width':width,
				'height':height,
                        	'transitionIn'	: 'elastic',
                                'transitionOut'	: 'elastic',
				'autoScale'     : false,
                        	'speedIn'	: 300,
                        	'speedOut'	: 300,
                                'centerOnScroll' : true,
				'type'		: 'iframe'  
		});
//                $(this).fancybox();
                
             });
            
}            

//            $('a.contactForm').each(function(){
//                var width = $(window).width()*0.9;
//
//                if (width > 800) {
//                    width = 800;
//                }
//
//                var height = $(window).height()*0.9;
//
//                if (height > 800) {
//                    height = 800;
//                }
//
//
//		$(this).fancybox({
//				'width':width,
//				'height':height,
//                        	'transitionIn'	: 'elastic',
//                                'transitionOut'	: 'elastic',
//				'autoScale'     : false,
//                        	'speedIn'	: 300,
//                        	'speedOut'	: 300,
//                                'centerOnScroll' : true,
//				'type'		: 'iframe'
//		});
//             });


