[jQuery] mouseover / mouseout

[jQuery] mouseover / mouseout


Hey guys,
I have problem and my programmer isn't around to help me :(
Look at main page:
http://www.mycitysolutions.com/
I used $('a.view').fadeTo('fast', 0.33) to fade out images on load and
$('a.view').mouseover(function () {
$(this).fadeTo('normal', 1);
});
$("a.view").mouseout(function () {
$(this).fadeTo('normal', 0.33);
});
to make them change opacity on image hover. But if you try numerous
times to run trough image animation will take some time :D
So i need some event listener or ... how do i solve this so it repeats
normally :)
Thx in advance