$(function() {
    $("#social-nav img").hover(
		function() {
		    $(this).animate({
		        opacity: 1,
		        height: '25px'
		    }, 500)
		},
		function() {
		    $(this).animate({
		        opacity: 0.6,
		        height: '20px'
		    }, 500)
		});

    $("#nav ul li").hover(
		function() {
		    $(this).children("ul").css("visibility","visible");
		},
		function() {
		    $(this).children("ul").css("visibility","hidden");
		}
	);
	
	$("a.email").each(function(){
	    var type = $(this).attr("value");
	    if(type == "info")
	    {
	        $(this).text("info@hudsonvilleprc.org");
	        $(this).attr("href", "mailto:info@hudsonvilleprc.org");
	    }
	});
});
