$(document).ready(function() {
	var userAgent = navigator.userAgent;
	$("#headerText .contenido").hide();
	if (userAgent.indexOf("Windows NT 5.1") > -1) {
		$("#winXp").show();
	} else if (userAgent.indexOf("Windows NT 6.0") > -1) {
		$("#winVista").show();
	} else if (userAgent.indexOf("Windows NT 6.1") > -1) {
		$("#win7").show();
	} else	{
		$("#otros").show();
	};
	$("#content .contenido").hide();
	$("#content .contenido:first").show();
	$("#content .lista a").click(function() {
		//downloadie8();
		var hash = $(this).attr("href");
		$("#content .contenido").hide();
		$(hash).show();
		$("#content .lista a").removeClass("activo");
		$(this).addClass("activo");
		return false;
		
	});
})
