var showContent = true;

$(document).ready(function()
{
	$("div#contentBox").hide();
	
	$("img.rollover").hover(
		function ()
		{
			this.src = this.src.replace("selected=0","selected=1");
		}, 
		function ()
		{
        	this.src = this.src.replace("selected=1","selected=0");
		}
	);
	
	$("img.readmore").hover(
		function ()
		{
			this.src = this.src.replace("normal","selected");
		}, 
		function ()
		{
        	this.src = this.src.replace("selected","normal");
		}
	);
});

function toggleContent(pageId)
{
	$.post("ajax/fetchContent.php", { pageId: pageId }, contentLoaded);
}

function contentLoaded(data)
{
	$("#readMore").toggle();
	$("div#contentBox").html(data);
	$("div#contentBox").toggle();
}
