$(function ()
{
	$('[rel=hover]').css ('cursor', 'pointer').hover (function () { hoverImage (this); }, function () { hoverImage (this); } );
	
}
);


function hoverImage (e)
{
	var src	= $(e).attr ('src');
	
	if (src.match (/_h\.gif/))
	{
		src	= src.replace (/_h\.gif/, '.gif');
	}
	else
	{
		if (!src.match (/_s\.gif/))
		{
			src	= src.replace (/\.gif/, '_h.gif');
		}
	}
	
	$(e).attr ('src', src);

}

function chooseVideo (i)
{
	$('#video_players div').hide ();
	$('#video_player' + i).show ();
}
