/**
 * @author ph, 01.05.2009
 */
$(document).ready(function() { 
	$('a.info').click(function() {
		var myInfoContent = $(this).parent().parent().find('div.hide').html();
		var myInfoTitle = $(this).attr('title');
		Shadowbox.open({
	        content:    '<div id="info-msg"><h3 class="information">Information</h3>' + myInfoContent + '</div>',
	        type:     	'html',
	        title:      myInfoTitle,
	        height:     350,
	        width:      350
	    });
	});

});
