﻿// JavaScript Document
$(document).ready(function(){   
	$('.eyecatcher').hover(function(){   
		$(".eyecatcherCover", this).stop().animate({top:'-186px'},{queue:false,duration:300});   
	}, function() {   
	   $(".eyecatcherCover", this).stop().animate({top:'0px'},{queue:false,duration:300});   
	});
	
	$("a.zoomlink").fancybox({
		'speedIn'		:	300, 
		'speedOut'		:	300, 
		'overlayColor'	:	"#0b3b47",
		'overlayOpacity':	0.9,
		'titlePosition'	:	'over',
		'padding'		:	1
	});
});
