




window.onload = function() {
	MM_preloadImages('images/menu-catalogue-b.gif', 'images/menu-nouveautes-b.gif', 'images/menu-livres-b.gif', 'images/menu-mon-panier-b.gif', 'images/menu-comment-b.gif');
	survol();
	dummy = new pausescroller(pausecontent, "pscroller1", "someclass", 5000);
	dummy.initialize();
}

function survol() {
	AddEvent("aCatalogue", "Catalogue", "catalogue");
	AddEvent("aNouveautes", "Nouveautes", "nouveautes");
	AddEvent("aLivres", "Livres", "livres");
	AddEvent("aPanier", "Panier", "mon-panier");
	AddEvent("aComment", "Comment", "comment");
}

function AddEvent(IdName, Ida, img) {
	id = document.getElementById(IdName);
	id.onmouseover = function() {
		MM_swapImage(Ida,'','../charte/avuedoeil3/images/menu-' + img + '-b.gif',1);
	}

	id.onmouseout = function () {
		MM_swapImgRestore();
	}
}