
showTooltip = function(area,positionX, PositionY){
   $("#" + area).each(function()
   {
	  $(this).qtip(
	  {
		content: '<img src="'+  $(this).attr('alt') +'" alt="" />', 
		style: {
			name: 'dark',
			width: "auto",
			padding: 0,
			background: 'none',
			border: {
			   width: 0, 
			   radius: 0
			}, 
			tip: false 
		 },
		 position: { 
			adjust: { x: positionX, y: PositionY }
		 },
		 hide: {
			fixed: true
		 }				 
	  });
   });	
};

changeLine = function(html){
	$("#producto_in").load("includes/" + html).hide().fadeIn("slow");
	
};

HideNextandPrev = function(){
	$(".jcarousel-prev").remove();
	$(".jcarousel-next").remove();
	
}; 

setActive = function(link){
	$("." + link).addClass("active");
};

