jQuery().ready(function() {

jQuery('.button a, .button input').mousedown(function(){
	jQuery(this).parents('.button').addClass("clicked");
});

jQuery('.button a, .button input').mouseout(function(){
	jQuery(this).parents('.button').removeClass("clicked");
});

});
