/* general equus */

$(function(){

	//login tab
	$('#login-tab').hover(function() {
	    $(this).filter(':not(:animated)').animate({ top: "-13px" });
	}, function() {
	    $(this).animate({ top: "-43px" });
	});	

});
