
// --------------------------------------------------------------------------------------------
// Everything below this line is custom script - unrelated to nav menu (droppy.js)
//---------------------------------------------------------------------------------------------

// Social Media Icons Added Here (global)
$(document).ready(function() {
	$("#social-media a").hover(function() {
		$(this).stop().animate({top:"-56px", opacity: "1.0"},200, function callback() {
			$("#social-media a span").fadeIn(200);
		});
	}, function() {
		$("#social-media a span").fadeOut(0);
		$("#social-media a").stop().animate({top:"-12px", opacity: "0.6"},400);
	});
});

