// Social Drop Down Panel 
$(document).ready(function() {
	$(".btn-slide").click( function() {
		if ($("#openCloseIdentifier").is(":hidden")) {
			$("#social").animate( {top: "0"} , 650 );
			$(this).addClass("active");
			$("#openCloseIdentifier").show();
		} else {
			$("#social").animate( {top: "-46px"} , 650 );
			$(this).removeClass("active");
			$("#openCloseIdentifier").hide();
		}
	});  
});