$(document).ready(function(){
$("#video_toggle").click(function(){
$(this).hide();
$("#video_box").show();
return false;
});
$("#more_news_button").click(function(){
$(this).parent().parent().hide();
$("#more_news").slideDown();
return false;
});

});
