// JavaScript Document
$(document).ready(function(){$("#list1 > li:last,#list2 > li:last,#list3 > li:last,#list4 > li:last,#list5 > li:last,#list10 > li:last,#list11 > li:last,#list12 > li:last,#list13 >li:last").css({"border-bottom":"none"});});
$(document).ready(function(){$("#list6 > li:last,#list7 > li:last,#list8 >li:last,#list9 > li:last").css({"background-image":"none"});});

$(function() {
		// set opacity to nill on page load
		$("#menu span").css("opacity","0");
		// on mouse over
		$("#menu span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 'slow');
		});
		
		
	});

