<!--	HUX SCRIPTS-->
<!--	ROLOVER ALPHA + LINK + TARGET -->
		
		jQuery.fn.controlBtnAlpha = function(divId, liga, ventana) {
		
			$(divId).mouseenter(function() {
				$(this).css('cursor', 'pointer'); 
				$(this).animate({"opacity": ".6"}, {duration: 200});  			
			});
			
			$(divId).mouseleave(function() {
				$(this).css('cursor', 'pointer'); 
				$(this).animate({"opacity": "1"}, {duration: 200});  			
			});
			
			$(divId).click(function() {
				window.open(liga, ventana);			
			});
		}

<!--	ROLOVER ALPHA + LINK + TARGET + CUSTOM ALPHA -->
		
		jQuery.fn.controlBtnAlphaCustom = function(divId, liga, ventana, opacidad) {
		
			$(divId).mouseenter(function() {
				$(this).css('cursor', 'pointer'); 
				$(this).animate({"opacity": opacidad}, {duration: 200});  			
			});
			
			$(divId).mouseleave(function() {
				$(this).css('cursor', 'pointer'); 
				$(this).animate({"opacity": "1"}, {duration: 200});  			
			});
			
			$(divId).click(function() {
				window.open(liga, ventana);			
			});
		}
		
		
<!--	ROLOVER ALPHA-->
		
		jQuery.fn.controlBtnRollOver = function(divId) {
		
			$(divId).mouseenter(function() {
				$(this).css('cursor', 'pointer'); 
				$(this).animate({"opacity": ".6"}, {duration: 200});  			
			});
			
			$(divId).mouseleave(function() {
				$(this).css('cursor', 'pointer'); 
				$(this).animate({"opacity": "1"}, {duration: 200});  			
			});
		}

<!--	HUX SCRIPTS-->



