$(document).ready(function(){
													 
	$('#projekty ul li a').hover(function() {
        $(this).children("img").stop().animate({
				  opacity: 0.15
			  }, 400 );
      }, function() {
        $(this).children("img").stop().animate({
				  opacity: 1
			  }, 400 );
  });
	
	$('.cisla a:first-child').addClass("selected");
	
	$('.cisla a').click(function() {
		var href = $(this).attr("href");
		$(this).parent().children().removeClass("selected");
		$(this).addClass("selected");
		$('#imagebox img').attr("src", href).css({opacity: 0}).stop().animate({opacity:1}, 1000 );
		return false;
  });
		
});
