// requires "jquery.js"

jQuery(document).ready(function () {
	jQuery(".top-index .introswf").each(function () {
		jQuery(this).find("a.link_to_introswf").each(function () {
			jQuery(this).click(function () {
				var href = jQuery(this).attr("href");
				var w = window.open(href, "introswf", "width=840,height=525,menubar=no,toolbar=no,scrollbar=yes");
				if (w) {
					w.focus();
				}
				return !w;
			});
		});
		jQuery(this).find(".introswf-image").each(function () {
			jQuery(this).hover(
				function () {
					this.src = this.src.replace(/\.png$/, "_rollover.png");
				},
				function () {
					this.src = this.src.replace(/_rollover\.png$/, ".png");
				}
			);
			// prefetch
			var rollover_image = document.createElement("img");
			rollover_image.src = this.src.replace(/\.png$/, "_rollover.png");
		});
	});
});

