$(function() {
	if($('#Image img').length > 1) {
		$('#Image img').hide().first().show();
		
		var counter = 0;
		setInterval(function() {
			var currentImage 	= counter % $('#Image img').length;
			var nextImage 		= ++counter % $('#Image img').length;
			$('#Image img').slice(currentImage, currentImage+1).show().animate({'left': -567 });	
			$('#Image img').slice(nextImage, nextImage+1).css({'left': 567}).show().animate({'left': 0 });	
		}, 6000);
	}
	
	$('#zewo').mouseover(function() {
		$(this).attr('src', '/medias/images/zewo_over.png');
	}).mouseleave(function() {
		$(this).attr('src', '/medias/images/zewo.png');		
	});
	
	$('.project').mouseenter(function() {
		$(this).css('background', '#feebde');
	}).mouseleave(function() {
		$(this).css('background', 'white');
	}).click(function() {
		window.location = $(this).find('a').attr('href');		
	});
});
