// JavaScript Document
$(document).ready(function() {
	// initialize the event rotator
	$('#spotcontent').cycle({ 
		fx:     'scrollHorz', 
		speed:  500, 
		timeout: 5000, 
		pause: 1,
		easing: 'swing',
		next:   '#next', 
		prev:   '#prev' 
	});
	// update the anchor targets (external links target new window/tab)
	$("a[@href^='http']").attr("target", "wis_external");
});