//Laget av Martin Ringdal for Lambertseterrevyen.no
$(function() {
	$('.revybilde img').animate({"opacity": .6 });

	$('.box').hover(function() {
		$(this).children().children('img').stop().animate({ "opacity": 1 });
	}, function() {
		$(this).children().children('img').stop().animate({ "opacity": .6 });
	});
	//fjern kommentaren på linja under og legg til klassen .current på nåværende revy slik som på 2010.
	// $('.current img').animate({"opacity": 1 });
});
// for linkene til face++
$(function() {
	$('a.link img').animate({"opacity": .6 });

	$('a.link').hover(function() {
		$(this).children('img').stop().animate({ "opacity": 1 });
	}, function() {
		$(this).children('img').stop().animate({ "opacity": .6 });
	});
});