$(document).ready(function(){
						   
	$('ul.picc > li').hover(function(){ 
		$(this).fadeTo(200,0.5);
	},function() {
		$(this).fadeTo(200,1);
	});
// spoon 10g 14g	
	$('ul.disp1 > li > a').click(function(){
		var src = $(this).attr("href"); 
		var title = $(this).attr("title");
		$("#slide1").fadeOut("slow",function() {
			$(this).find("img").attr("src",src);
			$(this).find("em").html(title);
			$(this).fadeIn();
		});
		return false;
	});
// spoon 18g	
	$('ul.disp2 > li > a').click(function(){
		var src = $(this).attr("href"); 
		var title = $(this).attr("title");
		$("#slide2").fadeOut("slow",function() {
			$(this).find("img").attr("src",src);
			$(this).find("em").html(title);
			$(this).fadeIn();
		});
		return false;
	});
	
// spoon 18g	
	$('ul.disp3 > li > a').click(function(){
		var src = $(this).attr("href"); 
		var title = $(this).attr("title");
		$("#slide3").fadeOut("slow",function() {
			$(this).find("img").attr("src",src);
			$(this).find("em").html(title);
			$(this).fadeIn();
		});
		return false;
	});
	
});
// JavaScript Document
