$(document).ready(function() {
	$(".pseudoLink").click(function() {
		top.location = "/" + this.id.replace("-", "/").toLowerCase() + "/";
	}).css("cursor", "pointer");
	
	/* Play for fun button */
	function OpenLobby() {
		var wnd = window.open("http://games.aleacasinos.com/lobby.aspx", "lobby", 'width=800px,height=600px,top=100px,left=200px,status=0,resizable=0,location=0,scrollbars=0');
		if (wnd) wnd.focus();
	}
	$(".enter-casino").click(function() {
		OpenLobby();
		return false;
	});
	$(".noscript").hide();
});