/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>			HASLAW secondary behavior layer			Created: 	12.15.05 			By:		Scott Jehl, Mindseye Inc.						notes:	-> This script attaches mouse events to more links so they show the whole article when clicked								>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/function showArticle(){  	document.getElementById('article').style.display = 'block'; 	document.getElementById('more').style.display = 'none'; }/*not ready yet*/function setupbutton(){		var button = document.getElementByID('more');						button.onclick = function(){				showArticle();			}			}