// JQuery 
  //<![CDATA[   
    // When the page is ready
    $(document).ready(function(){
	  // Show Hide Fields
	  $('.ponencia .more').hide();
	  $('.ponencia').append('<p class="verdetalles"><a href="" title="Ver los detalles">Detalles</a></p>');
	  $('.ponencia p.verdetalles a').click(function(){
	    $(this).parents('p').prev('.more').slideToggle('slow');
	    // Stop the link click from doing its normal thing
	    return false;
	  });
	  // Zebra Tables
	  $('tbody tr:nth-child(odd)').addClass('odd');
	  // rel="external" in new window
	  $('a[rel="external"]').click(function() {
        window.open($(this).attr('href') );
        return false;
	  });
	  // Apply link to div container
	  $('.panel').click(function(){
        window.location=$(this).find('a').attr('href');
		return false;
	  });
    });
  //]]>