$(document).ready(function() {

$('#logoCaroussel').cycle({ 
	fx: 'scrollHorz',
	prev: '#prevLogo',
	next: '#nextLogo',
	pause: true,
	speed:500, 
	timeout:4000
	}
);

$('#prevLogo').hover(
	function() { $(this).addClass('active'); },
	function() { $(this).removeClass('active'); }
);

$('#nextLogo').hover(
	function() { $(this).addClass('active'); },
	function() { $(this).removeClass('active'); }
);

$('#menuInner ul li').hover(
	function() { $('ul', this).css('display', 'block'); },
	function() { $('ul', this).css('display', 'none'); }
);


});


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.href && anchor.rel == "external") {       
     anchor.target = "_blank";
   }   
 }
}
window.onload = externalLinks;
