$(document).ready(function(){
	$("img.lazy").lazyload({ 
		effect : "fadeIn"
	});
	
	$("a#group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
	});
	
	$(".jump-link").hover(function() {
		$(this).stop().animate({ backgroundColor: "#fb7b00" }, 600);
	},function() {
		$(this).stop().animate({ backgroundColor: "#3dc6df" }, 400);
	});
	
	$(".product").hover(function() {
		$(this).stop().animate({ backgroundColor: "#eee" }, 600);
	},function() {
		$(this).stop().animate({ backgroundColor: "#fff" }, 400);
	});
});
