$(function() {
		// set opacity to nill on page load
		$("ul#social span").css("opacity","0");
		// on mouse over
		$("ul#social 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');
		});
	});
	
	
	
	$(function(){
		$('#slideshow').cycle();	
	
	});
	
	$(function() {

		$('#navigation li a').attr('rel','rgba(0,94,50,0.9)');
		 
		 });
