What a wonderful month it's been, sharing our love of the Grateful Dead through song and video! We applaud all the hard work and effort that you, the fans, put into the DEAD COVERS PROJECT, and we hope you'll continue to watch and support all the amazing participant videos on YouTube until we fire up the DEAD COVERS PROJECT again next February.
Throughout the month of April, we'll be shining our lovelight on a handful of artists that really made the grade. You'll get to know each of these five artists and find out just what made them connect with the Dead in our exclusive DEAD COVERS PROJECT profiles, but for now we'd simply like to congratulate the following participants (in no particular order)...
Now Playing In The Band...
The project may be over for 2012, but you can continue to check out some of the "Top Rated" videos that were submitted and "Like" them here.
<?php
$youtubeurl = 'https://gdata.youtube.com/feeds/api/videos?q=DeadCoversProject&max-results=10&orderby=rating&time=this_month&start-index=2&v=2';
$xml = simplexml_load_file($youtubeurl) or print '
There was a problem loading the youtube API xml
';
$count = '1';
foreach ($xml->entry as $entry)
{
$media = $entry->children('https://search.yahoo.com/mrss/');
$attrs = $media->group->player->attributes();
$videourl = $attrs['url'];
$attrs = $media->group->thumbnail[0]->attributes();
$imageurl = $attrs['url'];
print '
';
}
?>
h1.page-title {
display:none !important;
}
.videoTitle {
text-align:center;
margin:-24px 0 24px 0;
padding:0;
z-index:2;
}
.videoTitle a {
text-decoration:none !important;
}
span.blueTitle {
font-size:18px !important;
font-weight:bold !important;
color: #336699;
}
#videoContainer {
height:580px;
width:580px;
background-image:url(/sites/default/files/todays-featured-video-page-back2.jpg);
background-repeat:no-repeat;
margin:0 0 18px 0;
padding:0;
}
#videoContainer iframe {
margin:226px 0 0 22px;
padding:0;
}
#topRated {
clear:both;
width:100%;
margin:10px 0 20px 0;
}
#topRated h3 {
display:block;
width:260px;
float:left;
padding:0;
margin:10px 0 0 10px;
}
#topRated img {
float:left;
padding:0;
margin:0;
}
.videoItem {
clear:both;
width:540px;
padding:10px;
margin:0 0 20px 0;
background-image:url(/sites/default/files/covers-wires2.jpg);
background-repeat:no-repeat;
}
#topRated p.numberPlace {
font-size:36px;
font-family:georgia, 'Times New Roman', Times, serif;
float:left;
display:block;
margin:14px 10px 0 0;
padding:0;
width:80px;
text-align:center;
}
#topRated p.watchLink {
float:left;
margin:10px 0 0 10px;
padding:0;
}
#topRated p.watchLink a {
text-decoration:none;
}
p.stillTime {
font-size:24px !important;
font-family:georgia, 'Times New Roman', Times, serif !important;
padding:0;
margin:0;
}
.newDivide {
/* background-image:url(/sites/default/files/dead-covers-top-horiz-rule.jpg);
background-repeat:no-repeat; */
text-align:center;
padding:16px 0 0 0 !important;
margin:0 0 10px 0 !important;
}
/*facebook comments */
.fbcommentlink,
.deadnetcommentlink {
cursor: pointer;
display:block;
padding:4px 4px 4px 16px;
color:#660000;
background-color:#eadfcd;
width:260px;
float:left;
display:inline;
margin:0 0 14px 0;
}
a.fbcommentlink:hover,
a.deadnetcommentlink:hover {
background-color:#821919;
color:white;
}
.commentselected {
background-color:#660000;
color:white;
}
a.commentselected:hover {
background-color:#660000;
color:white;
}
.fbcomments {
clear:both;
}
.hideit {
display:none;
}
<?php
function curPageURL() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
?>
$(document).ready(function() {
$('a.fbcommentlink').bind('click', function() {
$(".fbcomments").removeClass("hideit");
$(".comment_add").addClass("hideit");
$("#forum-comments").addClass("hideit");
$('a.fbcommentlink').addClass("commentselected");
$('a.deadnetcommentlink').removeClass("commentselected");
});
$('a.deadnetcommentlink').bind('click', function() {
$(".fbcomments").addClass("hideit");
$(".comment_add").removeClass("hideit");
$("#forum-comments").removeClass("hideit");
$('a.fbcommentlink').removeClass("commentselected");
$('a.deadnetcommentlink').addClass("commentselected");
});
});