/* init */
$(document).ready(
function(){	
	$('.sf-menu ul').superfish({delay:1500,animation:{opacity:'show',height:'show'},speed:'medium',autoArrows:true,dropShadows:false});
	$('.fade').animate({opacity: 1 },"");
	$(".fade").hover( function() { $(this).stop().animate({"opacity": ".7"}, "medium");}, function() {$(this).stop().animate({"opacity": "1"}, "slow");});
	if (jQuery.browser.msie && jQuery.browser.version <= 7) {
		$('.fade').stop().animate({"opacity": ".7"});
		$(".fade").hover( function() { $(this).stop().animate({"opacity": ".7"}, "medium");} );
	}   
});
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;
