$(document).ready(function(){
	$("#internetExplorer").css("display", "none");
	
	var activeLink = "";
	
	$("#IElink").click(function() {
		if ($(".findLink").filter(':visible').length > 0)
		{
			$(activeLink).hide("slow");
		}
		
		if ($("#internetExplorer:visible").length == 1)
		{
			$("#internetExplorer").hide("slow");
		}
		else
		{
			$("#internetExplorer").show("slow");
			activeLink = "#internetExplorer";
		}
		
		return false;
	});
	
	$("#FFlink").click(function() {
		if ($(".findLink").filter(':visible').length > 0)
		{
			$(activeLink).hide("slow");
		}
		
		if ($("#fireFox:visible").length == 1)
		{
			$("#fireFox").hide("slow");
		}
		else
		{
			$("#fireFox").show("slow");
			activeLink = "#fireFox";
		}
		
		return false;
	});
	
	
	$("#OPlink").click(function() {
		if ($(".findLink").filter(':visible').length > 0)
		{
			$(activeLink).hide("slow");
		}
		
		if ($("#opera:visible").length == 1)
		{
			$("#opera").hide("slow");
		}
		else
		{
			$("#opera").show("slow");
			activeLink = "#opera";
		}
		
		return false;
	});
	
	
	$("#SFlink").click(function() {
		if ($(".findLink").filter(':visible').length > 0)
		{
			$(activeLink).hide("slow");
		}
		
		if ($("#safari:visible").length == 1)
		{
			$("#safari").hide("slow");
		}
		else
		{
			$("#safari").show("slow");
			activeLink = "#safari";
		}
		
		return false;
	});
});