// JavaScript Document

(function($) {
	$(function(){
		/* Document is ready
		---------------------------------------- */
		
		//
		// Rollover sur le bouton submit
		//
		$('form input[type=image]').hover(function () {
			var oldSrc = $(this).attr('src');
			$(this).attr('src', oldSrc.substring(0, oldSrc.lastIndexOf('.')) + '-hover.gif');
		}, function () {
			var oldSrc = $(this).attr('src');
			$(this).attr('src', oldSrc.substring(0, oldSrc.lastIndexOf('.') - 6) + '.gif');
		});
		
	});
})(jQuery);