fadeIn?

fadeIn?

Hi,

I have a set of images that fade in and out when rolled over, using the following code:

<script type="text/javascript">
$(document).ready(function(){
$(".thumbs img").hover(function(){
$(this).fadeTo("fast", 1.0);
},function(){
$(this).fadeTo("fast", 0.3);
});
});
</script>


But the problem is, the images start at full opacity when the page loads, and I want them to either a) start from 0.3 or even better b) fade in to 0.3 from 0.

How can I do this? Thanks!