$('.attachment_tile a').live("click",function(e){
e.preventDefault();
var download_link = this;
if($('.player').length > 0 && $('.attachment_tile.selected').length==1){
removePlayers();
return;
}
if(this.type == "Audio"){
removePlayers();
$(this).parent().parent().addClass("selected");
$('body').append("");
$('body').append("");
return;
}
if(this.type == "Video"){
removePlayers();
$(this).parent().parent().addClass("selected");
var show = (this+"").split('/download')[0];
show = show.replace("documents","videos");
$('body').append("");
$('body').append("");
return;
}
if(this.type == "Picture"){
removePlayers();
$(this).parent().parent().addClass("selected");
$('body').append("");
$('body').append("");
}
});
function removePlayers(){
$('.attachment_tile').removeClass("selected");
$('.player').remove();
$('#downloadButton').remove();
}
$('#closeButton').live("click",function(){
removePlayers();
});