$(document).ready(function() {
	FBR.init();
});

var FBR = {
	init: function() {
		$("div.project ul").hide();
		
		$("a.toggleProject").click(function() {
			$("div.project ul").slideToggle("fast");
			$(this).find("span").toggle();
			return false;
		});
		
		var colors = ['#0099ff','#ff0099','#ff9900','#99ff00'];
		$("ul.tagcloud li").hover(function() {
			this.style.color = colors[parseInt(Math.random()*100%4)];
		}, function() {
			this.style.color = colors[parseInt(Math.random()*100%4)];
		});
	}
}
