/*----------------------------------------------------------
 * JavaScript module for daily-news.appspot.com
 * (c) kunyami
 *
 * This script is distributed under an open source license
 * called the GNU General Public License, or GPL. 
 *--------------------------------------------------------*/

function MouseOver(image_url, title, url) {
	document.getElementById("image_l").setAttribute("src", image_url);
	document.getElementById("image_l").setAttribute("alt", title);
	document.getElementById("image_l").setAttribute("title", title);
	document.getElementById("image_a").setAttribute("href", url);
}
