// JavaScript Document

function show_selected(obj){
	var selected = obj.attr("href");
	$("#nav").find("a").each(function(){
		if($(this).attr("href") == selected){
			$(this).addClass("sel");
			$($(this).attr("href")).show();			
			if($(this).attr("href") == "#content_3"){	
				$("#scorelist").jScrollPane();
				if(!$.browser.msie){
					$("#highscores").roundcorners();						
				}//endif					
				swfobject.embedSWF("flash/howtobanner_<?php echo $lang ?>.swf", "flash_banner", "385", "133", "9.0.0","expressInstall.swf",flashvars,params,attributes);
				$(".big_call_to_action").css("display","block");
				$(".content").css("min-height","191px");
				$(".content").css("height","236px");
			} else {
				$(".big_call_to_action").css("display","none");
				$(".content").css("min-height","324px");
				$(".content").css("height","369px");
			}//end if
			if($(this).attr("href") == "#content_4"){	
				swfobject.embedSWF("flash/othergames_<?php echo $lang ?>.swf", "other_games_video", "430", "320", "9.0.0","expressInstall.swf",flashvars,params,attributes);
			}//end if				
		} else {
			$(this).removeClass("sel");
			$($(this).attr("href")).hide();
		}
	});
};