﻿//target=_blank
var $j = jQuery.noConflict();

$j(document).ready(function() {
    $j("a").filter(function() {
        return this.hostname && this.hostname !== location.hostname;
    }).attr('target', '_blank');
});

//image generic rollover
$j(
	function()
	{
		// set up rollover
		$j("img.ro").hover(
			function()
			{
				this.src = this.src.replace("-off","-on");
			},
			function()
			{
				this.src = this.src.replace("-on","-off");
			}
		);
	}
)