
// Slide toggle

$(document).ready(function() {
									
		$('.desc').hide();								
		
		$("a.show").click(function() {
			var toshow = ".desc#" + $(this).attr('title');
			$(toshow).slideToggle("fast");
			return false;
		});
		
		$("div.box:even").css("clear","both");

});

