
$(document).ready(function() {
  	$('a.box').each(function(){
		$(this).click(function() {
				$('div.box-style').slideUp(400);
    		$('div#box_' + this.id.substring(11)).slideToggle(400);
    		return false;
		});
	});
});
