function externalLinks() {
 	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) { var anchor = anchors[i];
	if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") anchor.target = "_blank";}
} window.onload = externalLinks;

$(document).ready(function (){
	var colores = ["#FFFF33", "#00FFFF", "#FFCCFF", "#D9E1E9", "#C9E7ED", "#E1ECE2", "#0000FF", "#000000"];
	var color = colores[ Math.floor( Math.random() * colores.length) ];
		$('.text').css("border-top-color", color);
		$('#form input,textarea, input, .enviar').css("border-color", color);
		$('hr,.gracies,.color').css("background-color", color);
		$('hr').css("color", color);
		//$('#content img,.text.desc').hide();
		//$('#content img, .text:not(:first)').hide();
		$('#gallery').reorder();
	});

$(window).load(function(){
		$("#gallery, img, #content img, .text.desc").fadeIn("fast");
});

