$(document).ready(function() {	//Cycle-Slideshow
	$('.slideshow').cycle({
		fx: 'fade',
		timeout: 3500,
		speed: 1200	
	});
});

$(document).ready(function() {		//fancybox
	$("a.img").fancybox({
		'transitionIn'		:	'elastic',
		'transitionOut'		:	'elastic',
		'speedIn'			:	500, 
		'speedOut'			:	200, 
		'padding'			: 	0,
		'overlayShow'		:	true,
		'cyclic'			:	true,
		'centerOnScroll'	:	true,
		'hideOnOverlayClick':	true,
		'hideOnContentClick':	true
	});
});
$(document).ready(function() {		//contact form popup
	$(".contact_form").fancybox({
		'width'				: 650,
		'height'			: 430,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
});
