
   

 $(function() {
  $("a .off").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".gif").join("_over.gif"));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("_over.gif").join(".gif"));
  });
});
 
$(function() {
  $("a .off").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".jpg").join("_over.jpg"));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("_over.jpg").join(".jpg"));
  });
});
  
 
$(function() {
  $("a .off").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".png").join("_over.png"));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("_over.png").join(".png"));
  });
});

$(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]);
		  }
		}
   
  $(function(){
  	 $("#fb_holder img").hover(function() {
	 	$("#fb_holder").load('../fb_load.php'); 
		
	});
 }); 
  
 $(function(){
  	$('ul.navigation a #one').click(); 
 });  
