// JavaScript Document

$(document).ready(function(){
	$('.subNav').hide();
	$('.down').click(function(){
		$('.subNav', this).slideDown(300);
	});
	$('.down').hover(function(){
		$('.subNav', this).slideUp(300);
	});
	$("#footer img").animate({opacity:0.82});
    $("#footer img").hover(function(){
		$(this).animate({opacity:1},200);
		}, 
		function(){
		$(this).animate({opacity:0.82},200);
	});
});


