$(function() {
	// look for all links with rel=external and make them have a target, keeps valid code
	jQuery("a[rel=external]").attr("target", "_blank");
	jQuery("#largeSocialLogo a.facebook,#largeSocialLogo a.myspace").tooltip({
		effect: 'slide',
		direction: 'down',
		slideOffset: 5,
		offset: [-10, 0],
		position: 'bottom center'
	});

	var currentPath = window.location.pathname;
	
	if ((currentPath == '/') || (currentPath == '/index.php')) {
		$('#banners').cycle({
			fx: 'fade',
			pause: 1
		});
	}
});

function go_select(formname) {
	document.location.href = eval("document."+formname+".loc[document."+formname+".loc.selectedIndex].value;");
}
