$(document).ready(function() {
	$('.lucid-btn, .lucid-btnGreen').mousedown(function() {
		$(this).addClass('btn_pressed');
	}).mouseup(function() {
		$(this).removeClass('btn_pressed');
	});
});
