$(function() {

	$('img.blend').css({"opacity":"0.6"});
	$('img.blend').hover(function() {
		$(this).animate({"opacity":"1"});
	}, function() {
		$(this).animate({"opacity":"0.6"});
	});
	
	$('ul.blend2 li').css({"opacity":"0.5"});
	$('ul.blend2 li').hover(function() {
		$(this).animate({"opacity":"1"});
	}, function() {
		$(this).animate({"opacity":"0.5"});
	});

});
