// JavaScript Document
if (document.images)
{
  homepage= new Image(77,15);
  homepage.src="http://www.jmidesigns.com/menu/home_over.gif";

  services= new Image(88,15);
  services.src="http://www.jmidesigns.com/menu/services_over.gif";

  clients= new Image(79,15);
  clients.src="http://www.jmidesigns.com/menu/clients_over.gif";

  contact= new Image(107,15);
  contact.src="http://www.jmidesigns.com/menu/contact_over.gif";

}

// Replaces the target_blank attribute to pass XHTML 1.1 Strict Standerds
// Replace the --- target="_blank" with this one rel="external" ---
// Also Make sure to save the Javascript Function Below to an external .js file to call
// it through out your site. (^_^*)
// Enjoy
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;

