// JavaScript Document
$(document).ready(function()
{
	$(".after_fade").fadeTo("slow", 0.3);
	$(".after_fade").hover(function()
	{
		$(this).fadeTo("slow", 1.0);},
		function()
		{
			$(this).fadeTo("slow", 0.3);
		}
		);
	}
);


/*$(document).ready(function()
{
	$(".after_fade").fadeTo("slow", 0.3);
	$(".after_fade").setInterval(function()
	{
		$(this).fadeTo("slow", 1.0);},
		function()
		{
			$(this).fadeTo("slow", 0.3);
		},2000
								 
								 );
	$(".after_fade").hover(function()
	{
		$(this).fadeTo("slow", 1.0);},
		function()
		{
			$(this).fadeTo("slow", 0.3);
		}
		);
	}
);
*/
