/*
 * Copyright (c) 2009 Visionare corporation
 *
 * file: layout.js
 */

j$(document).ready(function(){
	j$(".navi-button").mouseover(function(e) {
		var img = j$(e.target).attr("src");
		img = img.replace(/_def/, '_high');
		j$(e.target).attr("src", img);
	});

	j$(".navi-button").mouseout(function(e) {
		var img = j$(e.target).attr("src");
		img = img.replace(/_high/, '_def');
		j$(e.target).attr("src", img);
	});
});
