$(document).ready(function()
{
   $(".right_box").fadeTo("slow", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads. CHANGE 0 TO "SLOW" if you want to start w/ a fade.
   $(".right_box").hover(function()
   	{
		   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
		},
		function()
		{
		   $(this).fadeTo("slow", 0.7); // This should set the opacity back to 30% on mouseout
   	});
});



$(document).ready(function()
{
   $(".right-corner").fadeTo("slow", 0.8); // This sets the opacity of the thumbs to fade down to 30% when the page loads. CHANGE 0 TO "SLOW" if you want to start w/ a fade.
   $(".right-corner").hover(function()
   	{
		   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
		},
		function()
		{
		   $(this).fadeTo("slow", 0.8); // This should set the opacity back to 30% on mouseout
   	});
});

$(document).ready(function()
{
   $(".left-corner").fadeTo("slow", 0.9); // This sets the opacity of the thumbs to fade down to 30% when the page loads. CHANGE 0 TO "SLOW" if you want to start w/ a fade.
   $(".left-corner").hover(function()
   	{
		   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
		},
		function()
		{
		   $(this).fadeTo("slow", 0.9); // This should set the opacity back to 30% on mouseout
   	});
});


$(document).ready(function()
{
   $(".views-row ").fadeTo("slow", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads. CHANGE 0 TO "SLOW" if you want to start w/ a fade.
   $(".views-row ").hover(function()
   	{
		   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
		},
		function()
		{
		   $(this).fadeTo("slow", 0.7); // This should set the opacity back to 30% on mouseout
   	});
});



$(document).ready(function()
{
   $("#center").fadeTo("slow", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads. CHANGE 0 TO "SLOW" if you want to start w/ a fade.
   $("#center").hover(function()
   	{
		   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
		},
		function()
		{
		   $(this).fadeTo("slow", 0.7); // This should set the opacity back to 30% on mouseout
   	});
});



