$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".boton_reply").css("opacity","0.7");
 
// ON MOUSE OVER
$(".boton_reply").hover(function () {
 
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "fast");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.7
}, "slow");
});
});

$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".form_field").css("opacity","0.7");
 
// ON MOUSE OVER
$(".form_field").hover(function () {
 
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "normal");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.7
}, "slow");
});
});

$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".form_submit").css("opacity","0.9");
 
// ON MOUSE OVER
$(".form_submit").hover(function () {
 
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "fast");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.9
}, "slow");
});
});

$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".form_textarea").css("opacity","0.8");
 
// ON MOUSE OVER
$(".form_textarea").hover(function () {
 
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 0.9
}, "fast");
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.8
}, "slow");
});
});
