/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$( document ).ready( function( ) {

    $( '#category .isSlider .inverse_aff, #category .isSlider h2' ).click( function( ) {

        var parentBlock = $( this ).parent( );
        var hidenBlock = $( this ).parent( ).find( 'div:first' );

        if ( hidenBlock.is( ':visible' ) ) {
            $( hidenBlock ).slideUp( 'slow' );

        } else {
            
            $('html,body').animate(
                { scrollTop: $( parentBlock ).offset( ).top },
                'slow', function() {
                    $( hidenBlock ).slideDown( 'slow', function( ) {
                        $('html,body').animate({ scrollTop: $( parentBlock ).offset( ).top }, 'slow' );
                    });
                }
            );
        }
    });

    $( '#packCollier' ).click( function( ) {

       window.location = $( this ).find( 'a.suite' ).attr( 'href' );
    });

    // Si le panier est vide, renvoyer vers la boutique
   $( '#shopping_cart a' ).click( function( ) {
      if ( $( '#shopping_cart .ajax_cart_quantity' ).html( ) == '0' ) {
        window.location = $( '#mainMenuBoutique' ).attr( 'href' );
        return false;
      }
   });
});

