$(document).ready(function(){
	
	
		$('.pngfix').pngFix();
	
	
	$(".tag_2_info").hide();
	
	$(".tag_1").addClass("selected");
	
	$(".tag_1").click(function(){
		$(this).parent().parent().find(".tag_1_info").show();
		$(this).parent().parent().find(".tag_2_info").hide();
		
		$(this).parent().parent().find(".tag_2").removeClass("selected");
		$(this).addClass("selected");
		
		return false;
	});
	
	$(".tag_2").click(function(){
		$(this).parent().parent().find(".tag_2_info").show();
		$(this).parent().parent().find(".tag_1_info").hide();
		
		$(this).parent().parent().find(".tag_1").removeClass("selected");
		$(this).addClass("selected");
		
		return false;
	});
	
	/* Scores Home */

});	