$(document).ready(function(){
	
	// Animate Image links
	$("#social_links a").append("<span class='hover'></span>");
	$("#navigation .hover").css("filter","alpha(opacity=00)");
	// span whose opacity will animate when mouse hovers.
	
	$("#social_links a").hover(
		function() {
			$(".hover", this).stop().animate({"opacity": 1}, {"duration": 700}, {"easing": "easeOutSine"})
		},
		function() {
			$(".hover", this).stop().animate({"opacity": 0}, {"duration": 700}, {"easing": "easeOutQuad"})
	});
	
	//Cycle Slideshow
	$(".slideshow li:gt(0)").hide();
	
	setInterval(function() {
		$(".slideshow li:first-child").fadeOut(2000)
		.next().fadeIn(2000)
		.end().appendTo(".slideshow");
	}, 6000);

	
});
