$(document).ready(function()
{	// DYAD CREDIT
	$('a.site_credit').css({ opacity: "0.4" });

	$('a.site_credit').hover(function(){
		$(this).animate({ backgroundPosition: "0px 0px", width: "155px", opacity: "1" }, 300);
	},function(){ 
		$(this).animate({	backgroundPosition: "-155px 0px", width: "11px", opacity: "0.4" }, 300);}
	);
	membersonly();
	
});

function membersonly(){
	$('#container').append('<a href="/members-only/" id="secret" />&nbsp;</a>');
}
