/*
home.js
Autore:		Max Kiusso - mc AT mkitec DOT it
Data:		2010 07 07
*/

$ (
	function () {
		$( "#link>ul>li>a" )
			.tooltip(
				{
					bodyHandler: function() { 
						return $( "#" + $( "img" , this ).attr( "alt" ) ).html(); 
					} 
					, showURL: false
					, delay: 0
					, fade: 250
					, fixPNG: true
					, opacity: 0.85
					, showBody: " - "
					, track: true
					, extraClass: "araldic"
				}
			);
			
		$( "#lang>ul>li>a" )
			.tooltip(
				{
					showURL: false
					, delay: 0
					, fade: 250
					, fixPNG: true
					, opacity: 0.85
					, showBody: " - "
					, track: true
					, extraClass: "araldic"
				}
			);
	}
);
