$(document).ready(function() 
{
    $('#carousel_tooltip a[href][title]').qtip({
      content: {  text: false  },
      style: {
		  border: {
			 width: 2,
			 radius: 2,
			 color: '#A5DDF5'
		  },
		  tip: { 
		  corner: 'bottomLeft', 
			 color: '#A5DDF5',
			 size: {
				x: 20, 
				y : 8 
			 }
			},
		name: 'blue',
		  width: 200
		
	  },
	  position: {
		corner: {
			target: 'topRight',
			tooltip: 'bottomleft'
		}
	}
   });
});

window.onload = function(){
	$('#carousel').Carousel({
		itemWidth: 110,
		itemHeight: 50,
		items: 'a',
		rotationSpeed: 1.7,
		reflections: 0.45,
		itemMinWidth: 50
	});
}

function change_carousel(numTyp,numCat,lang) {
 $.ajax({
   type: "POST",
   url: "inc/ajax/php/carousel_ajax.php",
   data: "numTyp="+numTyp+"&numCat="+numCat+"&lang="+lang,
   success: function(msg){
     $("#carousel").html(msg);
	 	$('#carousel').Carousel({
		itemWidth: 110,
		itemHeight: 50,
		items: 'a',
		rotationSpeed: 1.7,
		reflections: 0.45,
		itemMinWidth: 50
	});
	
	$('#carousel_tooltip a[href][title]').qtip({
      content: {  text: false  },
      style: {
		  border: {
			 width: 2,
			 radius: 2,
			 color: '#A5DDF5'
		  },
		  tip: { 
		  corner: 'bottomLeft', 
			 color: '#A5DDF5',
			 size: {
				x: 20, 
				y : 8 
			 }
			},
		name: 'blue',
		  width: 200
		
	  },
	  position: {
		corner: {
			target: 'topRight',
			tooltip: 'bottomleft'
		}
	}
   });
   }
 });
}
