// Marquee Slideshow
$(function(){
	$("#marquee .slideshow").cycle({
		pager: "#marquee .nav"
	});
	$("#marquee .pause").click(function(){
		$("#marquee .slideshow").cycle("pause");
		$(this).hide();
		$("#marquee .resume").show();
		return false;
	});
	$("#marquee .resume").click(function(){
		$("#marquee .slideshow").cycle("resume");
		$(this).hide();
		$("#marquee .pause").show();
		return false;
	});
});

// Footer Social Icons
$(function(){
	$("#footer .social a").css({opacity:0.25});
	$("#footer .social a").hover(function(){
		$(this).css({opacity:1.0});
	}, function(){
		$(this).css({opacity:0.25});
	});
});
