function change_onglets(id, nb_lignes){
	for (i=0; i< nb_lignes; i++){
		if ("produits_menu_haut_item_"+i != id.id){
			document.getElementById("produits_menu_haut_item_"+i).className="produits_menu_haut_item pointer";
			document.getElementById("produits_onglet_item_"+i).className="produits_onglet_item";
		}
	}
					
	for (i=0; i< nb_lignes; i++){
		if ("produits_menu_haut_item_"+i == id.id){
			document.getElementById("produits_menu_haut_item_"+i).className="produits_menu_haut_item_over";
			document.getElementById("produits_onglet_item_"+i).className="produits_onglet_item_over";
		}
	}
}
				
function change_onglets_item(id, type, nb_lignes){
	for (i=0; i< nb_lignes; i++){
		if ("produits_onglet_item_droite_"+type+"_"+i != id.id){
			document.getElementById("produits_onglet_item_droite_"+type+"_"+i).className="produits_onglet_item_droite_item";
			document.getElementById("produits_onglet_item_gauche_"+type+"_"+i).className="produits_onglet_item_gauche_item";
		}
	}
					
	for (i=0; i< nb_lignes; i++){
		if ("produits_onglet_item_droite_"+type+"_"+i == id.id){
			document.getElementById("produits_onglet_item_droite_"+type+"_"+i).className="produits_onglet_item_droite_item_over pointer";
			document.getElementById("produits_onglet_item_gauche_"+type+"_"+i).className="produits_onglet_item_gauche_item_over";
		}
	}
}
				
				
				
$(function() {



                $('#container-1').tabs();

                $('#container-2').tabs(2);

                $('#container-3').tabs({ fxSlide: true });

                $('#container-4').tabs({ fxFade: true, fxSpeed: 'fast' });

                $('#container-5').tabs({ fxSlide: true, fxFade: true, fxSpeed: 'normal' });

                $('#container-6').tabs({

                    fxFade: true,

                    fxSpeed: 'fast',

                    onClick: function() {

                        alert('onClick');

                    },

                    onHide: function() {

                        alert('onHide');

                    },

                    onShow: function() {

                        alert('onShow');

                    }

                });

                $('#container-7').tabs({ fxAutoHeight: true });

                $('#container-8').tabs({ fxShow: { height: 'show', opacity: 'show' }, fxSpeed: 'normal' });

                $('#container-9').tabs({ remote: true });

                $('#container-10').tabs();

                $('#container-11').tabs({ disabled: [3] });



                $('<p><a href="#">Disable third tab<\/a><\/p>').prependTo('#fragment-28').find('a').click(function() {

                    $(this).parents('div').eq(1).disableTab(3);

                    return false;

                });

                $('<p><a href="#">Activate third tab<\/a><\/p>').prependTo('#fragment-28').find('a').click(function() {

                    $(this).parents('div').eq(1).triggerTab(3);

                    return false;

                });

                $('<p><a href="#">Enable third tab<\/a><\/p>').prependTo('#fragment-28').find('a').click(function() {

                    $(this).parents('div').eq(1).enableTab(3);

                    return false;

                });



            });