$(document).ready(function () {
	//fist page 4 big image rolover effect
	$('.items > ul > li > a').hover(function () {
		$(this).find('img').css({'opacity' : '1'});
		$(this).find('img').stop().animate({'opacity' : '0.8'}, 100, function () {
			$(this).animate({
					opacity: 1
				}, 500);
		});
	}, function () {});

});

