<script>
$("document").ready(function(){
$("input[@type='text'],input[@type='password'],textarea").focus(function(){
$(this).css({background:"#fcc", border:"1px solid #f00"}).blur(function(){
$(this).css({background:"transparent", border: "1px solid #ccc"})
})
});
});
</script>
$(document).ready(function(){
if ($.browser.msie){
$("input[@type='text'], input[@type='password'],
textarea").focus(function(){$(this).addClass("focus")}).blur(function(){$(this).removeClass("focus")});
}
})