$(document).ready(function() {

	$("a.seclink","div.moviemenu").click(function() {
		
		$("a","div.moviemenu").removeClass("active");
		$(this).addClass("active");
		
		var section = this.hash;
		//alert(section);
		
		$("div.section:visible").fadeOut(500, function() {
				$(section).fadeIn(500);
			});
			
		return false;
		
		});

		$("img","div.moviecontainer").animate({opacity: "0.5"}, 2500);
		
		$("img","div.moviecontainer").hover(function() {
				$(this).animate({opacity: "1"}, 500);
			}, function() {
				$(this).animate({opacity: "0.5"}, 500);
				});

});