
$(document).ready(function(){
	$('* #right_column').css('opacity',0);
	
	$('* .paiement_logo_block a img, .fabricante img').css('opacity', 0.6);
	
	$('* .paiement_logo_block a img, .fabricante img').mouseover(function(){
		$(this).stop();
		$(this).animate({opacity: 1},300);
	});
	$('* .paiement_logo_block a img, .fabricante img').mouseout(function(){
		$(this).stop();
		$(this).animate({opacity: 0.6},800);
	});
	
$(' * .button_large,* .exclusive, * .ver_mas, * #usefull_link_block li').css('opacity', 1);
	
	$('*  * .button_large,* .exclusive, * .ver_mas, * #usefull_link_block li').mouseover(function(){
		$(this).stop();
		$(this).animate({opacity: 0.5},300);
	});
	$('* .button_large,* .exclusive, * .ver_mas, * #usefull_link_block li').mouseout(function(){
		$(this).stop();
		$(this).animate({opacity: 1},800);
	});
	
	
	
	
	
	var ruta = $("* #ruta").html();
	
	$("* #firma").mouseover(
			
	        function()
	        {
	        	
	          $(this).attr('src',  ruta + 'firma_over.png');
	        }
	);
	    
	    $("* #firma").mouseout(
	        function()
	        {
	          $(this).attr('src', ruta + 'firma.png');
	        }
	);
	    
});

