$(document).ready(function() {
    $("#thumbnails_div img").bind("click",function(){
	if ($(this).attr("id")) {
	    var youtubeID=$(this).attr("id");
	    $("#show_div").empty();
	    $("#show_div").append("<iframe title=\"Video player\" width=\"320\" height=\"380\""+
			    " src=\"/vnews/"+youtubeID+"/ \" frameborder=\"0\" scrolling=\"no\"></iframe>");
	}
    });
});

