/*
* Author:      Marco Kuiper (http://www.marcofolio.net/)
*/
google.load("jquery", "1.3.2");
google.load("jqueryui", "1.7.2");
google.setOnLoadCallback(function()
{
	


$(document).ready(function(){

	
$('.j_one').mouseenter(function(){
	$(this).stop().fadeTo('slow',0.3);
}).mouseleave(function(){
	$(this).stop().fadeTo('slow',1);
});

});
});

