jQuery(function($){
	$('img.imgup').mouseover(function(){
		var a = $(this).parent();
		$(a).css('position','relative');
		$(a).css('left','0');
		$(a).css('top','0');
		
		var re = /(.*)ico_(.*)$/;
		var velky = this.src.replace(re, "$1$2");  //original obrazok
		
		$(this).after('<img class="imgup2" src="'+velky+'"> ');
		var b = $('img.imgup2');
		$(b).css('position','absolute');
		$(b).css('left','0');
		$(b).css('top',0-this.height);
		$(b).css('border','silver 1px solid');
		$(b).css('zIndex',10);
		
		$(a).mouseleave(function(){
				//$(b).remove();
				$(b).fadeOut('fast',function(){$(b).unbind().remove();});
		});
	});
});

