.center.asset{:id => "video#{video.id}"}
= "
#{video.name}
" unless video.name.blank?
%object{:align => "c", :height => "390", :width => "520"}
%param{:name => "movie", :value => video.url}/
%param{:name => "allowFullScreen", :value => "true"}/
%param{:name => "allowscriptaccess", :value => "always"}/
%embed{:allowfullscreen => "true", :allowscriptaccess => "always", :height => "390", :src => video.url, :type => "application/x-shockwave-flash", :width => "520"}
= "By: #{video.description}
" unless video.description.blank?
- if admin_signed_in?
%p.asset-admin
= link_to "Remove Video", video, :confirm => 'Are you sure?', :method => :delete
= link_to "Edit Video", edit_video_path(video), :rel=>"#overlay", :class => "overlayed"