$(document).ready(function() 

{

    $('#carousel_tooltip a[href][title]').qtip({

      content: {  text: false  },

      style: {

		background:'#FF99CC',

		color:'#FFFFFF',

		  border: {

			 width: 2,

			 radius: 2,

			 color: '#FFCCFF'

		  },

		  tip: { 

		  corner: 'bottomLeft', 

			 color: '#FFCCFF',

			 size: {

				x: 20, 

				y : 8 

			 }

			},

		name: 'blue',

		  width: 200

		

	  },

	  position: {

		corner: {

			target: 'topRight',

			tooltip: 'bottomleft'

		}

	}

   });

});



window.onload = function(){

	$('#carousel').Carousel({

		itemWidth: 150,

		itemHeight: 80,

		items: 'a',

		rotationSpeed: 1.7,

		reflections: 0.20,

		itemMinWidth: 100

	});

}



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: 90,

		items: 'a',

		rotationSpeed: 1.7,

		reflections: 0.20,

		itemMinWidth: 100

	});

	

	$('#carousel_tooltip a[href][title]').qtip({

      content: {  text: false  },

      style: {

	  	background:'#FF99CC',

		color:'#FFFFFF',

		  border: {

			 width: 2,

			 radius: 2,

			 color: '#FFCCFF'

		  },

		  tip: { 

		  corner: 'bottomLeft', 

			 color: '#FFCCFF',

			 size: {

				x: 20, 

				y : 8 

			 }

			},

		name: 'red',

		  width: 200

		

	  },

	  position: {

		corner: {

			target: 'topRight',

			tooltip: 'bottomleft'

		}

	}

   });

   }

 });

}
