Hey! Thanks for the notice. The error occurs due to a small bug in one of the themes javascript functions. A patch will be uploaded soon, meanwhile you can patch it yourself if you want to. just open the JS/avia.js file and search for the function avia_iframe_fix()
replace the function with the following code and it should work:
function avia_iframe_fix()
{
var iframe = jQuery('.slideshow iframe'),
youtubeEmbed = jQuery('.slideshow object, .slideshow embed').attr('wmode','opaque');
iframe.each(function()
{
var current = jQuery(this),
src = current.attr('src');
if(src)
{
if(src.indexOf('?') !== -1)
{
src += "&wmode=opaque";
}
else
{
src += "?wmode=opaque";
}
current.attr('src', src);
}
});
}
About displaying the videos without additional data like in the preview: this is something that seems to be done somewhere in the vimeo account that uploaded the video file. I simply used this url for embedding, without any parameters and it looks the way it does now: http://vimeo.com/18439821
dont know if one can change that with the help of additional parameters attached to the url. If i get to know how that is done I wil let you know...