/*
    On switch entre les tables #table-promos-en-cours et #table-la-selection
*/
$(document).ready(function() {
	
   
    $('#tab-la-selection').click(function(){
        $('#table-promos-en-cours').hide()
        $('#table-la-selection').show()
        $(this).addClass('tab-active')
        $('#tab-promos-en-cours').removeClass('tab-active')
        return false
    });
    
    $('#tab-promos-en-cours').click(function(){
        $('#table-promos-en-cours').show()
        $('#table-la-selection').hide()
        $(this).addClass('tab-active')
        $('#tab-la-selection').removeClass('tab-active')
        return false
    });
    
    /*
    Modifs Matt 02/12/08 : onglets fiche produit
    */
    
    if(document.getElementById('tab-compatibles')){
    
		$('#tab-details').click(function(){
		    $('#table-compatibles').hide()
		    $('#table-similaires').hide()
		    $('#table-details').show()
		    $('#table-packspromos').hide()
		    $(this).addClass('tab-active')
		    $('#tab-compatibles').removeClass('tab-active')
		    $('#tab-similaires').removeClass('tab-active')
		   	$('#tab-packspromos').removeClass('tab-active')
		    return false
		});
		
		$('#tab-compatibles').click(function(){
		    $('#table-compatibles').show()
		    $('#table-details').hide()
		    $('#table-similaires').hide()
		    $('#table-packspromos').hide()
		    $(this).addClass('tab-active')
		    $('#tab-details').removeClass('tab-active')
		    $('#tab-similaires').removeClass('tab-active')
		    $('#tab-packspromos').removeClass('tab-active')
		    return false
		});
		
		$('#tab-similaires').click(function(){
		    $('#table-similaires').show()
		    $('#table-details').hide()
		    $('#table-compatibles').hide()
		    $('#table-packspromos').hide()
		    $(this).addClass('tab-active')
		    $('#tab-details').removeClass('tab-active')
		    $('#tab-compatibles').removeClass('tab-active')
		    $('#tab-packspromos').removeClass('tab-active')
		    return false
		});
		
		$('#tab-packspromos').click(function(){
		    $('#table-packspromos').show()
		    $('#table-similaires').hide()
		    $('#table-details').hide()
		    $('#table-compatibles').hide()
		    $(this).addClass('tab-active')
		    $('#tab-similaires').removeClass('tab-active')
		    $('#tab-details').removeClass('tab-active')
		    $('#tab-compatibles').removeClass('tab-active')
		    return false
		});
		
		$('#image-similaires').click(function(){
		    $('#table-similaires').show()
		    $('#table-details').hide()
		    $('#table-compatibles').hide()
		    $('#table-packspromos').hide()
		    $('#tab-similaires').addClass('tab-active')
		    $('#tab-details').removeClass('tab-active')
		    $('#tab-compatibles').removeClass('tab-active')
		    $('#tab-packspromos').removeClass('tab-active')
		    document.location.href = '#onglets';
		    return false
		});
    
    } else {
    
		$('#tab-details').click(function(){
			$('#table-details').show()
		    $('#table-similaires').hide()
		    $('#table-packspromos').hide()
		    /*$('#table-carac').hide()*/		    
		    $(this).addClass('tab-active')
		    $('#tab-similaires').removeClass('tab-active')
		    $('#tab-packspromos').removeClass('tab-active')
		    /*$('#tab-carac').removeClass('tab-active')*/
		    return false
		});
		    
		$('#tab-similaires').click(function(){
		    $('#table-similaires').show()
		    /*$('#table-carac').hide()*/
		    $('#table-details').hide()
		    $('#table-packspromos').hide()
		    $(this).addClass('tab-active')
		    $('#tab-details').removeClass('tab-active')
		    $('#tab-packspromos').removeClass('tab-active')
		    /*$('#tab-carac').removeClass('tab-active')*/
		    return false
		}); 
		
		$('#tab-packspromos').click(function(){
		    $('#table-packspromos').show()
		    /*$('#table-carac').hide()*/
		    $('#table-details').hide()
		    $('#table-similaires').hide()
		    $(this).addClass('tab-active')
		    $('#tab-details').removeClass('tab-active')
		    $('#tab-similaires').removeClass('tab-active')
		    /*$('#tab-carac').removeClass('tab-active')*/
		    return false
		}); 
		
		
		
		/*$('#tab-carac').click(function(){
		    $('#table-carac').show()
		    $('#table-similaires').hide()
		    $('#table-details').hide()
		    $(this).addClass('tab-active')
		    $('#tab-details').removeClass('tab-active')
		    $('#tab-similaires').removeClass('tab-active')
		    return false
		}); */
		
		$('#image-similaires').click(function(){
		    $('#table-similaires').show()
		    $('#table-details').hide()
		    $('#table-packspromos').hide()
		    $('#tab-similaires').addClass('tab-active')
		    $('#tab-details').removeClass('tab-active')
		    $('#tab-packspromos').removeClass('tab-active')
		    document.location.href = '#onglets';
		    return false
		});

    }

});



