$.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>');
	
	// ΟΠΘΜΕΠ
	$('#i1').rollover('img/m1.gif','img/m1a.gif')
	$('#i2').rollover('img/m2.gif','img/m2a.gif')
	$('#i3').rollover('img/m3.gif','img/m3a.gif')
	$('#i4').rollover('img/m4.gif','img/m4a.gif')
	$('#i5').rollover('img/m5.gif','img/m5a.gif')
});
