$('#nav li').addClass('inactive');
$('#nav li a').click(function(){
  $('#nav li').removeClass('active').addClass('inactive');
  $(this).parent().removeClass('inactive').addClass('active');
  $('a[href*=#home]').click(function(){
	$('#nav li').removeClass('active').addClass('inactive')});
});

$(".thumb img").css({opacity:0});
$(".thumb").hover(function(){
    $(this).find("img").stop().animate({opacity:1},400);
}, function() {
    $(this).find("img").stop().animate({opacity:0},500);
});
/*
$('.thumb img').css({"top":"111px"})
	$('.thumb').hover(function(){
		$(this).find('img').stop().animate({"top":"5px"},'fast')
		},
		function(){
		$(this).find('img').stop().animate({"top":"111px"},'fast')
		});
*/

$("a.grouped_elements").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	400, 
		'speedOut'		:	400, 
		'easingIn' 		:	'easeOutBack',
		'easingOut' 	:	'easeInBack',
		'overlayShow'	:	false,
		'autoScale'		:	true,
		'centerOnScroll':	true,
		'padding'		:	5,
		'titlePosition'	:	'over',
});

