// JavaScript 
$(function(){
	$('#logoBottom li img').each(function(){
		var imgL = this.src.replace("_S","_L");
		
		var w = $(this).width();
		var h = $(this).height();
		$(this).tooltip({ 
			top: -240,
			left: -50,
			delay: 0, 
			fade: true,
			showURL: false, 
			bodyHandler: function() { 			
				return $("<img/>").attr("src", imgL); 
			} 
		});
	});
})