$(window).bind(
	'load',
	function()
	{
		$("img").css("opacity", 0)
		setRollOvers();
	}
);

function setRollOvers()
{
	$("h2").bind(
		'click',
		function()
		{
			window.open($("a[name="+$(this).attr("id")+"]").attr("href"),$("h2").text());
		}
	);
	$("h2").bind(
		'mouseover',
		function()
		{
			$("img[name="+$(this).attr("id")+"]").css("opacity", 1);
			$("a[name="+$(this).attr("id")+"]").css("font-weight", "bold");
		}
	);
	$("h2").bind(
		'mouseout',
		function()
		{
			$("img[name="+$(this).attr("id")+"]").css("opacity", 0);
			$("a[name="+$(this).attr("id")+"]").css("font-weight", "normal");
		}
	);
}
