$(function() {
	var anchor = $('#content').find('#link li,#works li').find('a img');
	$(anchor).hover(function() {
		$(this).stop(true,true).fadeTo(200, 0.7);
	},function() {
		$(this).stop(true,true).fadeTo(360, 1.0);
	});
});
