$.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/aboutbtn.gif','img/aboutbtn_s.gif');
	$('#i2').rollover('img/prodbtn.gif','img/prodbtn_s.gif');
	$('#i3').rollover('img/typesbtn.gif','img/typesbtn_s.gif');
	$('#i4').rollover('img/pricebtn.gif','img/pricebtn_s.gif');
	$('#i5').rollover('img/faqbtn.gif','img/faqbtn_s.gif');
});
