//Javascript for menu rollovers on Partnerships Victoria Home Page

var defaultByline = "";

function switchByLine(title,blurb) {
	//First, store the value of the byline in the temp variable so we can put it back in the onMouseOut function
	var bylineNode = document.getElementById("byline");
	if(defaultByline=="") {
		defaultByline = bylineNode.innerHTML;
	}
	
	//now set the inner HTML to the new value
	bylineNode.innerHTML = "<div class='rollovertextbold'>" + title + "</div><div class='rollovertext'>" + blurb + "</div>";
}

function restoreByLine() {
//alert('starting onMouseOut')
	var bylineNode = document.getElementById("byline");
	bylineNode.innerHTML = defaultByline;
}