// JavaScript Document

$(document).ready(

	function()
	{
		$("a img").hover(

			function()
			{
				$(this).css("opacity", "0.7");
				$(this).css("filter", "alpha(opacity=70)");
			},

			function()
			{
				$(this).css("opacity", "1");
				$(this).css("filter", "alpha(opacity=100)");
			}
		);
	}

);
