 $(document).ready(function () {
	$('.imgg img').css({ opacity: 0.5 });
	$('#slideshow img').hide().stop(false,false).fadeIn(3000);
	$('.inf').click(function(){window.location.href = $(this).find('a').attr('href')});
	$('.imgg').mouseover( function() {
			$('.inf', this).show();
			$('img', this).stop().animate({ opacity: 1.0 }, 'slow');
			});
		$('.imgg').mouseout( function() {
			$('.inf', this).hide();
			$('img', this).stop().animate({ opacity: 0.5 }, 'fast');
			});
});
