$(function(){
	new dynBackground( "../img/sfondo%20home.jpg");

	var credits = (function() {
		var visibile = false;
		var $credits = $("div.credits");
		var h = $credits.height();

		$("div.credits,span.credits").css({cursor: "pointer"}).click(function(e) {
			if (visibile = !visibile)
				$credits.css({height: 1}).animate({height: h},500);
			else
				$credits.animate({height: 1},500, function(){$credits.hide()});
		});
		
		return this;
	}());

});
