// JavaScript Document
/*******************************/
/* MENU HORIZONTAL : ROLL OVER */
/*******************************/

jQuery(document).ready(function() {

    jQuery(".rollover").mouseover(function() { 
		 src = this.src;
		 newsrc = src.replace('.png',''); 
		 newsrc += '-on.png';
		 this.src = newsrc;
 	});
 	jQuery(".rollover").mouseout(function() { 
		 src = this.src;
		 newsrc = src.replace('-on.png',''); 
		 newsrc += '.png';
		 this.src = newsrc;
    });

    jQuery(".rollover2").mouseover(function() {
        src = this.src;
        newsrc = src.replace('.gif', '');
        newsrc += '-on.gif';
        this.src = newsrc;
    });

    jQuery(".rollover2").mouseout(function() {
        src = this.src;
        newsrc = src.replace('-on.gif', '');
        newsrc += '.gif';
        this.src = newsrc;
    });

});
