﻿ $(document).ready( function() { 
	   $('#linki a').hover(function() {
		$('#linki a').css("color","blue");		
		$(this).css("color","red");
	    var yyy = $(this).text();
		var xxx = $(this).attr('rel');
		$('#boxobraz span').html(yyy);
		$('#obraz').fadeTo(50, 50, function(){
	   $(this).attr({src: xxx}).fadeTo(50, 1);
	   $(this).css("border","2px gray solid");
	                                  }
	                  );
		    }, function() {	  }
	     );
     });
