$(document).ready(function(){
	/*-----------------------------------
	--- PRELOAD IMAGE -------------------
	-----------------------------------*/
	$.preloadImages = function(){
		for(var i = 0; i<arguments.length; i++){
	    	$("<img>").attr("src", arguments[i]);
		}
	}
	
	/*-----------------------------------
	--- SWAP des Images
	-----------------------------------*/
	$(".swap").hover(function(){
		img = $('img', this).attr('src').replace("_off", "_on");
		$('img', this).attr('src',img);
	},
	function(){
		img = $('img', this).attr('src').replace("_on", "_off");
		$('img', this).attr('src',img);
	});
});
