 
 
$(function() {
  $("a .off").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("_over."));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("_over.").join("."));
  });
});
  
$(function() {
  $(".sup-submit").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("_over."));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("_over.").join("."));
  });
});
 
 
 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";
 }
}
 
$(function(){
	externalLinks();  
  });

 
 
	  jQuery.preloadImages = function()
		{
		  for(var i = 0; i < arguments.length; i++)
		  {
			jQuery("<img>").attr("src", arguments[i]);
		  }
		}
 