// JavaScript Document iframe settings

// image frame
$(document).ready(function() {
						   
		$("a#single_image").fancybox();

});

// iframe foodcmpus training

$(document).ready(function() {

		$("a.MakeFrame").fancybox({
		'width'				: 830,
		'height'			: '90%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
});

// iframe contactform and vacancy form
$(document).ready(function() {

		$("a.FormFrame").fancybox({
		'width'				: 460,
		'height'			: 680,
		'autoScale'			: true,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
});




// iframe call back
$(document).ready(function() {

		$("a.CallBackFrame").fancybox({
		'width'				: 460,
		'height'			: 440,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
});

// iframe full
$(document).ready(function() {

		$("a.FullFrame").fancybox({
		'width'				: '95%',
		'height'			: '90%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
});


