

/******************************************TOP LOGIN *****************************************/

$(document).ready(function(){

	$(".btn-slide").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
});	


$(document).ready(function(){

	$("#closeLogin").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
});	


/************************************** FAQ Drop Down **************************/


$(document).ready(function() {									
	$("a[name^='faq-']").each(function() {
		$(this).click(function() {
			if( $("#" + this.name).is(':hidden') ) {
				$("#" + this.name).fadeIn('slow');
			} else {
				$("#" + this.name).fadeOut('slow');
			}			
			return false;
		});
	});
});


/******************************************SOCIAL ICONS *****************************************/



$(function() {
$("#social li").hover(function() {
var e = this;
$(e).find("a").stop().animate({ top: "-10px" }, 300, function(){
$(e).find("a").animate({ top: "5px" }, 1000, function(){
$(e).find("a").animate({ top: "0px" }, 500);
});
});
});
});








