$(document).ready(function() {
    
    // Setup de la welcome page
	var pause = 4000;
	var transitionDuration = 300;
	
	// Top box: first slide                  
	$('#homePage h2 a').attr( {href: "./home.php?cat=6700"} );
	// Middle left box
	$('#homePage h3.col1 a').attr( {href: "./home.php?cat=1000"} );
	// Middle right box
	$('#homePage h3.col2 a').attr( {href: "./product.php?sku=24232"} );    
    
    
	// Bottom boxes
	$('#homePage h4.col1 a').attr( {href: "#"} );
	$('#homePage h4.col2 a').attr( {href: "#"} );
	$('#homePage h4.col3 a').attr( {href: "./help.php?section=newsletter"} );

    
    
	function MoveTo1() 
	{
		// Top box: first slide
		$('#homePage h3.col2 a').animate( {opacity: 0}, transitionDuration );
		$('#homePage h3.col2 a').animate( {top: 0}, 10 );
		$('#homePage h3.col2 a').animate( {opacity: 1}, transitionDuration , null,  function() { setTimeout( MoveTo2, pause);} );
		$('#homePage h3.col2 a').attr( {href: "./product.php?sku=24232"} );
	}
	
    function MoveTo2() 
    {
        // Top box: second slide
        $('#homePage h3.col2 a').animate( {opacity: 0}, transitionDuration );
        $('#homePage h3.col2 a').animate( {top: -168}, 10 );
        $('#homePage h3.col2 a').animate( {opacity: 1}, transitionDuration , null,  function() { setTimeout( MoveTo3, pause);} );
        $('#homePage h3.col2 a').attr( {href: "./product.php?sku=15103"} );
    }
      
	function MoveTo3()
	{
		// Top box: third slide
		$('#homePage h3.col2 a').animate( {opacity: 0}, transitionDuration );
		$('#homePage h3.col2 a').animate( {top: -334}, 10 );
		$('#homePage h3.col2 a').animate( {opacity: 1}, transitionDuration , null,  function() { setTimeout( MoveTo1, pause);} );
		$('#homePage h3.col2 a').attr( {href: "./product.php?sku=15117"} );
	}
	  
	
	 
	function StartMove() 
	{
		setTimeout(MoveTo1, 0); //pause);  
	}
	StartMove();

});