

$(".orb").hover( function () { 
$(this).next("a").animate({
    'margin-top': 5,
} , 400);
},
function () {
$(this).next("a").animate({
    'margin-top': 0,
} , 400);
});

$("a").not("#twitter").hover(
	function(){
  $(this).fadeTo( 400 , 0.7 );
},
	function(){
  $(this).fadeTo( 400 , 1 );
}
);

function runIt() {
$("#logo").delay(3000).fadeTo( 100 , 0.5 ).fadeTo( 100 , 1 ).fadeTo( 100 , 0.5 ).fadeTo( 100 , 1 , runIt);
};
runIt();

$("#navlogin").click( function() {
	$("#logged_out").fadeIn(200);
});

