// JavaScript Document
$(document).ready(function() {
	$('.simoon, .chi, .ella, .pacha, .hadiya, .nisis, .narwee, .nakos, .daks, .paks, .raks, .whatwedo, .gamesgiving, .parentspages, .aboutus, .stories, .arrow1, .arrow2').append('<span class="hover"></span>').each(function () {
		var $span = $('> span.hover', this).css('opacity', 0);
		$(this).hover(function () {
			$span.stop().fadeTo(300, 1);
			}, function () {
				$span.stop().fadeTo(300, 0);
		});
	});
});
