$(document).ready(function(){

	// hover sobre enlaces de píldoras que contienen imgs
    $('.link-img-pil').mouseenter(function() {
		$( $(this).children() ).css({ 'opacity': 0.8 });
    });
    $('.link-img-pil').mouseleave(function() {
		$( $(this).children() ).css({ 'opacity': 1 });
    });


    if ($("#send").length) {

	    $("#send").mouseleave(function() {
			$(this).css({ 'opacity': 1 });
	    });

	    $("#send").mouseenter(function() {
			$(this).css({ 'opacity': 0.8 });
	    });

	}
	

});

