// -------- start of jQuery document.ready() ---------- //
  
$(document).ready(function(){
	
	$(".a_elektrina span.last, .a_plyn span.last").css('opacity', 0.0);
	  $('.a_elektrina').each(function() {
		$(this).hover(function() {
			$(".a_plyn span.last").stop().animate({ opacity: 1.0 }, 300);
		},
		function() {
			$(".a_plyn span.last").stop().animate({ opacity: 0.0 }, 300);
		});
	  });
	  $('.a_plyn').each(function() {
		$(this).hover(function() {
			$(".a_elektrina span.last").stop().animate({ opacity: 1.0 }, 300);
		},
		function() {
			$(".a_elektrina span.last").stop().animate({ opacity: 0.0 }, 300);
		});
	  });
	  
	  $("#content_blue table tr:even").addClass('even');
	  
	  $(".fancybox").fancybox();
	  
	  jQuery("a[rel*=external]").attr( "target", "_blank" );
	
 });




      
     

