// JavaScript Document
																										
var ad      = new Array()
var links   = new Array()

var width   = "403";        // Width of Advertisements
var height  = "537";        // Height of Advertisements 
var target  = "_blank";     // Target window to open the ads

	ad[0]='http://www.tugentelatina.com/noticias/wp-content/images/intro/la_boom_dias_11_05_09.jpg';
	ad[1]='http://www.tugentelatina.com/noticias/wp-content/images/intro/la_casa_del_cabrito_generico.jpg';	
	ad[2]='http://www.tugentelatina.com/noticias/wp-content/images/intro/club_el_regio_jueves.jpg';
	ad[3]='http://www.tugentelatina.com/noticias/wp-content/images/intro/metropolis_dias.jpg';

    links[0]='http://www.laboomhouston.com';    
    links[1]='http://www.lacasadelcabrito.com';       
    links[2]='http://www.clubelregio.com';
    links[3]='http://www.metropolisdisco.com';
	    
var xy       = Math.floor(Math.random()*ad.length);
document.write('<a href="'+links[xy]+'" target="'+target+'"><img src="'+ad[xy]+'" width="'+width+'" height="'+height+'" border="px solid #00FF00" alt="'+links[xy]+'"></a>');
