/**
 * @author leonkessler
 */
$(document).ready(function(){
	$('div.info').hide();
	$('h2.work').click(function() {
  	$(this).next().slideToggle(300);
	//console.log($(this).next('div.info'));
});

}
)