codice:
<html>
<head>
<style type="text/css">
h1 { behavior: url("behave.htc") }
</style>
</head>
<body>
<h1>Mouse over me!!!</h1>
</body>
</html>
file "behave.htc"
codice:
<public:component>
<public:attach event="oncontentready" />
<script type="text/javascript">
element.onmouseover = function() {
this.style.color='red';
};
element.onmouseout = function() {
this.style.color='blue'
};
</script>
</public:component>
per le png trasparenti se hai pazienza credo uscirà un articolo su html.it... 
Ciao
edit: l'ho modificato, riprovalo.