I'm quite new to the Jquery game so bare with me as this may sound like a stupid question to some. I'm trying to add a fadeOut function which links to another.CLICK HERE At present i have a flashing log when the user click on the logo, the flashing stops, has a slight delay then slowly fades Out. Is there anyone out there that is able to correct me on the code i have pasted below?\[code\] <script> $(document).ready(function(){ $("#center-gif").click(function(){ $('#center-gif').hide(); $('#center-img').show(); }); $('#center-img').click(function(){ $('#center-img').hide(); $('#center-img-gif').show(); }); $('flash-link').click(function(){ $('center-img').fadeOut(5000); }); }); </script>\[/code\]