var variable=0;
var maxItems=0;
var delayTime=2000;
var show=true;
$(document).ready(function() {
   
   $('#banner_info a').attr('target', '_new');

  $.each(elementosTicker,function(n,value) {
    $('#noty').append(writeDiv(n,value.url,value.titulo,value.intro,value.link));
  });  
   $('.evento a').attr('target', '_new');   
  maxItems=elementosTicker.length;

  $('#noty').mouseout(function(){
    show=true;

  })
  .mouseover( function()
  {
						
    show=false;
                        
  });
  if ( !$.browser.msie ) {
    setTimeout("slayer()",2000);
  }
	
});

function writeDiv123(pos,url,titulo,intro){
	var url;
	var porcion = url.substring(13, 16); 
	if(porcion=='126')
	{
  return '<div id="item_'+pos+'" class="evento" ><span class="link"><a href="'+url+'" title="Read more about '+titulo+'" >'+intro+'</a></span><br/><a href="'+url+'" title="Read more about '+titulo+'" >'+titulo+'</a><br/><span class="link"><a href='+url+'  title="Read more about '+titulo+'" > Read more...</a></span><br/><br/></div>';
	}
	else
	{return '<div id="item_'+pos+'" class="evento" ><span class="link"><a href="'+url+'" title="Leer m&aacute;s acerca '+titulo+'" >'+intro+'</a></span><br/><a href="'+url+'" title="Leer m&aacute;s acerca '+titulo+'" >'+titulo+'</a><br/><span class="link"><a href='+url+'  title="Leer m&aacute;s acerca '+titulo+'" > Leer m&aacute;s...</a></span><br/><br/></div>';
	 
	 }
  
}
function writeDiv(pos,url,titulo,intro,link){
var url;
	var porcion = url.substring(13, 16);         
	if(link=='84')
	{
  return '<div id="item_'+pos+'" class="evento" >\n\
            <span class="link">\n\
            <a href="'+url+'" target="_blank" title="Read more about " >'+intro+'</a>\n\
            </span><br/>'+titulo+'<br/>\n\
            <span class="link"><a href='+url+'  title="Read more about " target="_blank"><img src="images/more.png" />Read more...</a></span><br/></div>';
        }
	else
	{return '<div id="item_'+pos+'" class="evento" >\n\
            <span class="link">\n\
            <a href="'+url+'" target="_blank" title="Leer m&aacute;s acerca " >'+intro+'</a>\n\
            </span><br/>'+titulo+'<br/>\n\
            <span class="link" ><a href='+url+'  title="Leer m&aacute;s" target="_blank"> <img src="images/more.png" />Leer m&aacute;s</a></span><br/></div>';
	 
	 }
}

function slayer()
{
  var contenido;
		

  if(show==false){
    setTimeout("slayer()",2000);
    return '';
  }
		
  if(variable<maxItems)
  {
    $("#item_"+variable).delay(delayTime).slideUp(function(){
      var objeto=$("#item_"+variable);
      $("#item_"+variable).remove();
      $('#noty').append(objeto);
      $("#item_"+variable).slideDown();
      variable++;
    });//
  }
  if(variable==maxItems)
  {
    variable=0;
  }
  setTimeout("slayer()",2000);
  return '';
}



