// INTERNET EXPLORER
// no opacity on dropdown menu


	$(document).ready(function() {
		
		// make entire navigation tab clickable
			$("#navigation li").click(function(){
			    	window.location=$(this).find("a").attr("href");
					return false;
			});
			
			// animated drop-down menu for social network buttons
			var startHeight = "-25px";
			$("#social").css({"top": startHeight});
		
			
			$("#social").hover(
				function() {
					$(this).animate({top: 10}, 300);
					
				},
				function() {
					$(this).animate({top: startHeight}, 500);
				}
			);		

	});
