// JavaScript Document

$(document).ready(function() {
						  
	   $('#accordian-overflow li').hover(function(){
				$('img',this).stop(true, true).fadeOut(500);
		}, function() {
				$('img',this).stop(true, true).fadeIn(500);
		});
});