function createLinks(){
		var minleft = ($(window).width() / 2) - 400;
		var endleft = (minleft + 570);
		var begtop = 70;
		var pos = $.browser.msie ? "absolute" : "absolute";

		$("#iehate").empty();

		// Corinthians
		$("#iehate").append("<a href='../Corinthians' class='time' id='time1' target='_blank' " + 
			"style='display: block; height: 50px; width: 50px; position: " + pos + "; top:170px; left: " + (minleft + 390) + 
			"px; z-index: 3; border: none; font-size: 55pt; font-family: courier new'>&nbsp;</a>");

		// Porco
		$("#iehate").append("<a href='../Verdão' class='time' id='time2' target='_blank' " + 
			"style='display: block; height: 40px; width: 50px; position: " + pos + "; top:82px; left: " + (minleft + 350) + 
			"px; z-index: 3; border: none; font-size: 43pt; font-family: courier new;'>&nbsp;</a>");

		// Tricolor paulista
		$("#iehate").append("<a href='../SPFC' class='time' id='time11' target='_blank' " + 
			"style='display: block; height: 40px; width: 47px; position: " + pos + "; top:125px; left: " + (minleft + 354) + 
			"px; z-index: 3; border: none; font-size: 40pt; font-family: courier new;'>&nbsp;</a>");

		// Peixe
		$("#iehate").append("<a href='../Santos' class='time' id='time3' target='_blank' " + 
			"style='display: block; height: 50px; width: 40px; position: " + pos + "; top:23px; left: " + (minleft + 360) + 
			"px; z-index: 3; border: none; font-size: 40pt; font-family: courier new;'>&nbsp;&nbsp</a>");

		// Inter
		$("#iehate").append("<a href='../Colorado' class='time' id='time9' target='_blank' " + 
			"style='display: block; height: 50px; width: 40px; position: " + pos + "; top:270px; left: " + (minleft + 477) + 
			"px; z-index: 3; border: none; font-size: 40pt; font-family: courier new;'>&nbsp;</a>");

		// Gremio
		$("#iehate").append("<a href='../Grêmio' class='time' id='time10' target='_blank' " + 
			"style='display: block; height: 50px; width: 40px; position: " + pos + "; top:240px; left: " + (minleft + 439) + 
			"px; z-index: 3; border: none; font-size: 40pt; font-family: courier new;'>&nbsp;</a>");

		// Atlético Mineiro
		$("#iehate").append("<a href='../Galo' class='time' id='time5' target='_blank' " + 
			"style='display: block; height: 50px; width: 40px; position: " + pos + "; top:310px; left: " + (minleft + 565) + 
			"px; z-index: 3; border: none; font-size: 40pt; font-family: courier new; '>&nbsp;</a>");

		// Cruzeiro
		$("#iehate").append("<a href='../Cruzeiro' class='time' id='time4' target='_blank' " + 
			"style='display: block; height: 55px; width: 40px; position: " + pos + "; top:290px; left: " + (minleft + 519) + 
			"px; z-index: 3; border: none; font-size: 45pt; font-family: courier new; '>&nbsp;</a>");

		// Vasco
		$("#iehate").append("<a href='../Vasco' class='time' id='time8' target='_blank' " + 
			"style='display: block; height: 55px; width: 40px; position: " + pos + "; top:308px; left: " + (minleft + 625) + 
			"px; z-index: 3; border: none; font-size: 45pt; font-family: courier new; '>&nbsp;</a>");

		// Fluminense
		$("#iehate").append("<a href='../Fluminense' class='time' id='time7' target='_blank' " + 
			"style='display: block; height: 55px; width: 40px; position: " + pos + "; top:326px; left: " + (minleft + 670) + 
			"px; z-index: 3; border: none; font-size: 45pt; font-family: courier new; '>&nbsp;</a>");

		// Botafogo
		$("#iehate").append("<a href='../Botafogo' class='time' id='time6' target='_blank' " + 
			"style='display: block; height: 55px; width: 40px; position: " + pos + "; top:313px; left: " + (minleft + 715) + 
			"px; z-index: 3; border: none; font-size: 45pt; font-family: courier new; '>&nbsp;</a>");

		// Flamengo
		$("#iehate").append("<a href='../Flamengo' class='time' id='time12' target='_blank' " + 
			"style='display: block; height: 55px; width: 40px; position: " + pos + "; top:300px; left: " + (minleft + 758) + 
			"px; z-index: 3; border: none; font-size: 45pt; font-family: courier new; '>&nbsp;</a>");

		$("a.time").each(function(i){
			var cod = this.id.substr(4);

			$("#iehate").append("<img id='imgTime" + cod + "' src='../Images/?Codigo="+ cod +
				"&Tipo=Dominios' style='width: 40px; display: none; z-index: 1; position: " + pos + "'/>");
			var img = $("#imgTime" + cod);
			
			//alert($(this).position().left + "," +  (minleft + 500));
			$(img).css({
				top: $(this).position().top + 5,
				left: $(this).position().left,
				opacity: 0,
				display: ''
			});
			
			this.animatingj = 0;
			$(this).bind("mousemove", function(){
				var cod = this.id.substr(4);
				var img = $("#imgTime" + cod), imgraw = img.get(0);

				if (imgraw.animatingj)
					return;

				imgraw.animatingj = 1;
				img.animate({
					top: begtop,
					left: endleft,
					opacity: 1,
					width: 80
				}, 300);
			}).bind("mouseout", function(){
				var cod = this.id.substr(4);
				var img = $("#imgTime" + cod);

				img.stop(true);
				img.animate({
					top: $(this).position().top + 5,
					left: $(this).position().left,
					opacity: 0.1,
					width: 40
				}, 300, function(){
					this.animatingj = 0;
					$(this).css({ opacity: 0});
				});
			});
		});
	}
