There is a small flash banner on the page.
<div class="banner"> <object type="application/x-shockwave-flash" ... data="images/MP_banner.swf" > <param ....../> <img src="images/banner.jpg" .... /> </object> </div>
in theory, when you click on it, you need to open a large flash banner with a roller. But for this purpose a small picture was made. and a function on click is attached to it on jquery
<div class="presentation"> <img src="images/presentation.jpg" alt="" /> </div>
here is jquery
$('.presentation').click(function() { $('#flashContent').show().animate(); $('#page').fadeTo('1000', 0.3); return false; });
How can you get rid of this 2nd stage, and open the video when you click on the banner right? I say in advance!
$('.banner').mousedown(function() { ... НЕ РАБОТАЕТ ... });