$(window).load(function() {
	$('#slider').nivoSlider({
		effect : 'fold',
		slices : 30,
		animSpeed : 1000,
		pauseTime: 5000
	});
});

$(document).ready(function() {
	$("#networks li").hover(function() {
		var thumbOver = $(this).find("img").attr("src");
		$(this).find("span").css({
			'background' : 'url(' + thumbOver + ') no-repeat center bottom'
		});
	}, function() {
		var thumbOver = $(this).find("img").attr("src");
		$(this).find("span").css({
			'background' : 'url(' + thumbOver + ') no-repeat center top'
		});
	});
});

