			// <![CDATA[
				$(document).ready( function(){

					// ################################################################################################ //
					$('.hp-grattaevinci-item ul li a').tooltip({ 
						track: true, 
						delay: 0, 
						showURL: false, 
						showBody: " - ", 
						fade: 250 
					});
			

					// ################################################################################################ //
					$boxtop = $('<div id="top-info-container" style="font-size: .1em; width: 207px; height: 5px; background: transparent url(images/hp/bg-hp-info-container-top.gif) no-repeat 0 0" />');
					$('.info-container').before($boxtop);
					$boxbottom = $('<div id="bottom-info-container" style="font-size: .1em; width: 207px; height: 5px; background: transparent url(images/hp/bg-hp-info-container-bottom.gif) no-repeat 0 0" />');
					$('.info-container').after($boxbottom);
					
										
					// ################################################################################################ //
					$('#preview-launch .preview-launch-item').hide();
					$('#preview-launch .active').show();
					
					$('#preview .first').hover(function(){
						$(this).addClass('hover-first');
					}, function(){
						$(this).removeClass('hover-first');
					});
					
					$('#preview .last').hover(function(){
						$(this).addClass('hover-last');
					}, function(){
						$(this).removeClass('hover-last');
					});
					
					$('#preview .preview-item').hover(function(){
						$(this).addClass('hover');
					}, function(){
						$(this).removeClass('hover');
					})
					
					$('#preview .preview-item').each(function(index, el){
						
						$(this).click(function(){
						
							var el = this;
							var elementToShow = index+1;
							
							// Nascondo il lancio corrente
							$('#preview-launch').fadeOut('normal', function(){
								
								// Disattivo tutti i pulsanti eccetto quello cliccato
								$(el).siblings().removeClass('active');
								$(el).siblings().removeClass('ie6-active');
								$(el).siblings().removeClass('ie6-active-first');
								$(el).siblings().removeClass('ie6-active-last');

								// Attivo il pulsate cliccato
								if ($(el).is('.first'))
									$(el).addClass('ie6-active-first');
								if ($(el).is('.last'))
									$(el).addClass('ie6-active-last');
								$(el).addClass('active');
								$(el).addClass('ie6-active');
								
								// Nascondo tutti i lanci e attivo quello selezionato
								$('#preview-launch .preview-launch-item').hide();
								$('#preview-' + elementToShow).show();

							})
							// Mostro il lancio cliccato
							.fadeIn();

						});
						
					});
					
					// ################################################################################################ //
					$corner = $('<div id="launch-corner-ne" style="position: absolute; top: 0; right: 0; font-size: .1em; width: 8px; height: 6px; background: transparent url(images/hp/preview-launch-corner-ne2.png) no-repeat 0 0" />');
					$('#preview').append($corner);
					
				});
			// ]]>
