/*
+ ---------------------------------------------------------------------------+
|    soliland
|
|     http://www.soliland.fr
|     cyril.janssens@free.fr
|
|     Released under the terms and conditions of the
|     GNU General Public License (http://gnu.org).
|
|	$Header: /soliland/V2/html/default/js/mainMenu/formEvents.js,v 1.3 2008-09-09 12:21:18 cyril Exp $
|   $Source: /soliland/V2/html/default/js/mainMenu/formEvents.js,v $
|   $Revision: 1.3 $
|   $Date: 2008-09-09 12:21:18 $
|   $Author: cyril $
|	$State: Exp $
+----------------------------------------------------------------------------+
 */
$(document).ready(function() {
						   
	/*Page layout of the principal menu*/
	$(".mainMenuButton").hover(
		function () {
			path = getPath();
			this.src = path.image + "default/menu/general/hover/" + this.id + ".png";
		},
		function () {
			path = getPath();
			this.src = path.image + "default/menu/general/normal/" + this.id + ".png";
		}
	);

 });
