glow.ready(function() {
	if (glow.dom.get('#primarybranding')) {
		var mylist1 = glow.dom.get('#primarybranding').replaceWith('<h1><img src="/murdermostfamous/images/logo_murdermostfamous.png" width="350" height="60" alt="Murder Most Famous" /></h1>');
	}
	if (glow.dom.get('#secondarybranding')) {
		var mylist2 = glow.dom.get('#secondarybranding').replaceWith('<h2><img src="/murdermostfamous/images/logo_raw_sm.png" width="100" height="41" alt="BBC RAW" /></h2>');
	}
	
	// var theh3 = glow.dom.get("#tertiarybranding h3").text();
	var theh3 = glow.dom.get("#tertiarybranding img").attr("alt");
	
	if (theh3 != undefined) {
		if (theh3.toLowerCase() == "video diaries") {
			var mylist3 = glow.dom.get('#tertiarybranding').replaceWith('<h3><img src="/murdermostfamous/images/section_video_diaries.png" width="165" height="35" alt="Video Diaries" /></h3>');
		} else if (theh3.toLowerCase() == "writing tips") {
			var mylist3 = glow.dom.get('#tertiarybranding').replaceWith('<h3><img src="/murdermostfamous/images/section_writing_tips.png" width="155" height="35" alt="Writing Tips" /></h3>');
		} else if (theh3.toLowerCase() == "writing challenges") {
			var mylist3 = glow.dom.get('#tertiarybranding').replaceWith('<h3><img src="/murdermostfamous/images/section_writing_challenges.png" width="225" height="35" alt="Writing Challenges" /></h3>');
		} else if (theh3.toLowerCase() == "celebrity profiles") {
		var mylist3 = glow.dom.get('#tertiarybranding').replaceWith('<h3><img src="/murdermostfamous/images/section_celebrity_profiles.png" width="225" height="35" alt="Celebrity Profiles" /></h3>');
		} else if (theh3.toLowerCase() == "links") {
		var mylist3 = glow.dom.get('#tertiarybranding').replaceWith('<h3><img src="/murdermostfamous/images/section_links.png" width="75" height="35" alt="Links" /></h3>');
		} else if (theh3.toLowerCase() == "about") {
		var mylist3 = glow.dom.get('#tertiarybranding').replaceWith('<h3><img src="/murdermostfamous/images/section_about.png" width="75" height="35" alt="About" /></h3>');
		} else {
			var mylist3 = glow.dom.get('#tertiarybranding').replaceWith('<h3><img src="/murdermostfamous/images/section_writing_challenges.png" width="225" height="35" alt="Writing Challenges" /></h3>');
		}
	}
});


var win = null;

function openpopup(url, name)
{
  if (win == null || win.closed)
    win = window.open(url, name, "width=600,height=480,resizable=yes,scrollbars=yes,status=yes");
  else
    win.focus();
}