function loadMultimedia(width, height){
    if ($('.youtube').length>0){
        $.each($('.youtube'), function(){
			
            $temp = $(this).children('a').attr('href')+'?version=3&amp;hl=es_ES&amp;fs=1';
            $(this).children('a').remove();
            $(this).children('input').each(function(){
                $temp = $temp+'&amp;'+$(this).attr('name')+'='+$(this).attr('value');
            });
            $(this).append('<object width="'+width+'" height="'+height+'"><param name="movie" value="'+$temp+'"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="'+$temp+'" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" allowscriptaccess="always" allowfullscreen="true"></embed></object>');
        });
    }
    if ($('.vimeo').length>0){
        $.each($('.vimeo'), function(){
            $temp = $(this).children('a').attr('alt');
            $(this).children('a').remove();
            $(this).append('<object width="'+width+'" height="'+height+'"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id='+$temp+'&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed src="http://vimeo.com/moogaloop.swf?clip_id='+$temp+'&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="'+width+'" height="'+height+'"></embed></object>');
        });
    }
}
