
	$(document).ready(function() {

		// Image viewer on home page
		$('body > header > section > div > article').cycle({timeout:5000});
		$('body > header > section > div > article').mouseover(function() {
			$(this).cycle('pause');
		}).mouseout(function() {
			$(this).cycle('resume');
		});

		// Fancy Box for Gallery
		$("a.fancybox").fancybox();
		$("a.fancybox-gal").fancybox();
		$("a.fancybox-con").fancybox();

	});

