$(document).ready(function() {
	
	// External links
	$('a.blank').attr('target', '_blank');
	
	// Corner...
	//$('tr.top th').corner("tl");
	
	
	
	$("a.lastComments").attr('href','/wordpress/wp-content/themes/guiadeldeporte.com/lastComments.inc.php?height=450&width=700');
	
	
	
	// splitcol
     $('.splitcol').each(function() {
          if($(this).is("ol")) { var ordered = true; }
          var colsize = Math.round($(this).find("li").size() / 2);
          $(this).find("li").each(function(i) {
               if (i>=colsize) {
                    $(this).addClass('right_col');
               }
          });
          if(ordered) {
               $(this).find('.right_col').insertAfter(this).wrapAll("<ol class='splitcol' start='" + (colsize+1) + "'></ol>").removeClass("right_col");
          } else {
               $(this).find('.right_col').insertAfter(this).wrapAll("<ul class='splitcol'></ul>").removeClass("right_col");
          }
     });
     
     
	
});