$(function() {	
	$('nav ul.primary').superfish();
	
	$("#cycle").cycle({
		slideExpr: '.bg',
		timeout: 5000,
		delay: 0,
		speed: 1000
	});
	
	$(".pic").each(function() {
		img = $(this).find("img");
		src = img.attr("src");
		img.css('visibility','hidden');
		$(this).css('background', 'transparent url('+src+') no-repeat 0 0');
		
		$("<div />").addClass('cover').appendTo(this);
		$("<div />").addClass('cover-bottom').appendTo(this);
	});
});
