function imageOpen(file, width, height) {
	window.open("image.php?file="+file, "Bild", "width="+width+", height="+height);
}

var open = null;

$(document).ready(function() {
	$('body').click(function() {
		$('.subnavigation').fadeOut(50);
	});
	$('.subnavigation').fadeTo(0, 'toggle');
	$('.program.toggle').bind('click', function() {
		var rel = $(this).attr('rel');
		$('.subnavigation').not($('#' + rel)).fadeOut(50);
		$('#' + rel).fadeTo(50, 'toggle');
		$('#' + rel).css('position', 'absolute');
		$('#' + rel).css('top', $(this).offset().top + $(this).height());
		$('#' + rel).css('left', $(this).offset().left - ( $('#' + rel).width() - $(this).width() ) - 2);
		return false;
	});
});

