$.fn.rollover = function(img,img2) {
	return this.each(function(){
		/* var img_class = $(this).attr('class');
		var img_id = $(this).attr('id');
		var img_style = $(this).attr('style');
		var img_alt = $(this).attr('alt');
		var img_title = $(this).attr('title');
		 */
		$('#preload-rollover').append('<img src="'+img2+'" />');
		$(this).hover(function(){
			$(this).attr('src',img2);
		},function(){
			$(this).attr('src',img);
		});
	});
};
$(function(){
	$('body').append('<div style="display:none" id="preload-rollover"></div>');
	
	// ПРИМЕР
	$('#test').rollover('img/картинка по умолчанию.jpg','img/картинка для наложения.jpg');
});
