<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<input type="text" class="row_email" /><br>
<input type="text" class="row_name" /><br>
<input type="password" class="row_pass" />
<script>
$('.row_email, .row_name, .row_pass').click(function(){
	$(this).css({
		'box-shadow':'0 0 4px #6C0',
	});
        alert('Событие "click"!');
}).blur(function(){
	$(this).css({
		'box-shadow':'0 0 4px #000',
	});
        alert('Событие "blur"!');
});
</script>
И чего у тебя не работает?