jQuery(document).ready( function () {
	
	jQuery.noConflict();

	jQuery(function() {
		// Descriptif produit
		jQuery("#tabs").tabs().find(".ui-tabs-nav").sortable({axis:'x'});
	    
		// Top 5
		jQuery("div.foo").carousel({ 
			pagination:true,
			loop: true,
			autoSlide: true,
			autoSlideInterval: 5000
		});
	});

	
	
	jQuery.get('jquery-ui/formulaire_lang.php',
		function(data) {
			jQuery('#dialogLang').html(data);
			jQuery('#dialogLang').dialog('option', 'title', "Identification");
			jQuery('#dialogLang').dialog(
					{
						resizable: false,
		/*				autoOpen: true,		*/
						autoOpen: false,
						modal: true,
						width: 495,
						height:300/*,
						buttons:
						{
								"Valider": 
									function() {
										jQuery.post('index.php');
										//alert("Validation OK");
									}
						}*/	
					}
			);
	
		}
	);
});