$(document).ready(function() {
	
	$(".variety").hover(
		function(){
			$(this).animate({
			opacity: 0.25
			}, 150, function(){
				$(this).animate({
					opacity: 1
				});
			});
		},
		function(){
			
		}
	);
	
	/* This is basic - uses default settings */
	
	$("a#single_image").fancybox();
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'titlePosition' : 'inside'
	});
});

function goToByScroll(id){
	$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}
