// run code after the page has loaded
$(document).ready(function() {
	if (PAGE_ID == null) {
		SECTION_NAME = "home";
		PAGE_ID = 0;
	}
	
	cp.cmpn.Content.load(SECTION_NAME, PAGE_ID);

	cp.util.Util.enableLinks("top-nav");
	cp.util.Util.enableLinks("content");
	
	$("body").css("background-image", "url('/img/brick.png')");
	
	//$("#content").css("background-image", "url('/img/paper.png')");
	
	if (cp.util.Util.IS_IE) {
		$("#media-links").css("width", "55px");
	}
	
	if (cp.util.Util.IS_IE6) {
		$("#logo").html('<h2>Clickable Poems: Literature in the Digital Age</h2>');
		$("#media-links").css("width", "300px");
		$("#media-links").html('<a href="http://www.facebook.com/ClickablePoems" target="newWindow">Facebook</a> | <a href="mailto:editor@clickablepoems.com?subject=Feedback from Clickable Poems">Feedback</a>');
	}
	
	else {
		$("#logo").html('<img src="/img/logo.png" width="212" height="79" border="0" alt="Clickable Poems: Literature in the Digital Age" />');
		
		$("#media-links").html('<div style="float: left"><a href="http://www.facebook.com/ClickablePoems" target="newWindow"><img src="/img/facebook.png" width="21" height="21" border="0" alt="Clickable Poems on Facebook" /></a></div><div style="float: right; padding-top: 2px"><a href="mailto:editor@clickablepoems.com?subject=Feedback from Clickable Poems"><img src="/img/email.png" width="21" height="16" border="0" alt="Send feedback to Clickable Poems" /></a></div>');

		$("#wall").css("background-image", "url('/img/graffiti.png')");
	}
});

