$(document).ready(function(){

	// 	TABS
	$(".panel").hide();
		$("#tabs li").removeClass("current");
		var a = location.hash;
		var h = (location.hash.length)? a : "#thegames";
		$(h).show();
		$("li a[href="+h+"]").parent().addClass("current");
	
		$("#tabs li a").live("click",function(){
			$(".panel").hide();
			h = $(this).attr("href");
			$(this).parent().siblings().removeClass("current");
			$(this).parent().addClass("current");
			$(h).show();
			location.hash = "#";
				return false;
		});

	//  IMAGE CAPTION
	$(".screenshots a img").click(function(){
		alt = $(this).attr("alt");
		$("#facebox .footer span").empty().append(alt);
	});
	
	// HIDE PROMOS
	$(".promotions .panel").hide();
});
