First thing's first: nice site.

Second, I think I see your problem. You have two flash files that you are calling:
http://markus252.com/logo_round.swf and
http://markus252.com/images/logo_round.swf. Well, the former does not exist, so try putting this code on to replace the first logo (top right):
CODE
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="56" height="52">
<param name="movie" value="/images/logo_round.swf">
<param name="quality" value="high">
<embed src="/images/logo_round.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="56" height="52"></embed>
</object>
Do the same thing for the second instance of the flash file:
CODE
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="56" height="52">
<param name="movie" value="/images/biglogo.swf">
<param name="quality" value="high">
<embed src="/images/biglogo.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="56" height="52"></embed>
</object>
Remember to change the size of the biglogo.swf file because I forgot to look at its size, so I left it the same size as logo_round.swf
Hope that helps, and good luck!
If you need additional help, feel free to post a reply or PM me.

Reply