(function ($) {
	$(document).ready(function(){
		var node = $('#main-content .node');
		$('img',node).hover(function(){
			$(this).fadeTo('slow',.75);
		},function(){
			$(this).fadeTo('slow',1);
		});
	});
})(jQuery);;

