// JavaScript Document

/*$(function () {
		<!--top menu animation-->
		$("#container").mouseenter(function() {
			$("#box2").fadeTo("normal", 0.7);
		});
		$("#container").mouseleave(function() {
			$("#box2").fadeOut("fast");
		});
});*/

$(function () {
		<!--top menu animation-->
		$("#top-nav").mouseenter(function() {
			$(".menu").animate({left:96},"normal");
		});
		$("#top-nav").mouseleave(function() {
			$(".menu").animate({left:0},"fast");
		});
});

$(function () {
		<!--thumbnail transparencies-->
		$(".thum").mouseenter(function() {
			$(this).fadeTo("fast", 1.0);
		});
		$(".thum").mouseleave(function() {
			$(this).fadeTo("normal", 0.5);
		});
});		

$(function () {
		<!--thumbnail transparencies-->
		$(".film-thum").mouseenter(function() {
			$(this).fadeTo("fast", 1.0);
		});
		$(".film-thum").mouseleave(function() {
			$(this).fadeTo("normal", 0.5);
		});
});	

$(function () {
		<!--thumbnail transparencies-->
		$(".thum-small").mouseenter(function() {
			$(this).fadeTo("fast", 1.0);
		});
		$(".thum-small").mouseleave(function() {
			$(this).fadeTo("normal", 0.5);
		});
});		

	
		
		
/*$(function () {		
		<!--thumbnail labels-->
		$("#thum01").mouseenter(function() {
			$("#thum-label01").slideDown("normal");
		});
		$("#thum01").mouseleave(function() {
			$("#thum-label01").slideUp("fast");
		});
		
		$("#thum02").mouseenter(function() {
			$("#thum-label02").slideDown("normal");
		});
		$("#thum02").mouseleave(function() {
			$("#thum-label02").slideUp("fast");
		});
});*/
		
	<!--bottom button rollovers-->	
$(function () {		
		$(".bottom-btn").mouseenter(function() {
			$(this).animate({opacity:1.0},"fast");
		});
		$(".bottom-btn").mouseleave(function() {
			$(this).animate({opacity:0.7},"fast");
		});
		
			$("#bottom-nav").click(function() {
			$(this).animate({top:100},"fast");
		});
	});

<!--bottom menu-->	

$(function () {	
		
			
		$("#footer").mouseenter(function() {
			$(".bar").animate({top:0},"normal");
		});
		$("#footer").mouseleave(function() {
			$(".bar").animate({top:130},"slow");
		});
		
		

	});
