$(function () {
	// GLOBAL
	/*
	labelWidth = $('div.package label').width();
	labelWidth = $('div.package').width();
	alert(labelWidth);
	*/
	labelWidth = '150px';
	
// proben paket
	$('div.infoLayer').hover(function() {
		$(this).css({
			display: 'block'
		});
	});
	$('label.topleft').hover(function() {
	  $('div.infoLayer').css({display:'none'});
	  $(this).parent().children('div.infoLayer').css({ 
			display: 'block'
		})
		$('div.infoLayer').css({ left: labelWidth, right: 'auto', top: '0px', bottom: 'auto' }); 
	}, function() {
	  $(this).parent().children('div.infoLayer').css({
			display: 'none'
		})
	});
	
	$('label.topright').hover(function() {
	  $(this).parent().children('div.infoLayer').css({ 
			display: 'block'
		})
		$('div.infoLayer').css({ left: 'auto', right: labelWidth, top: '0px', bottom: 'auto' });
	}, function() {
	  $(this).parent().children('div.infoLayer').css({
			display: 'none'
		})
	});
	
	$('label.bottomleft').hover(function() {
	  $(this).parent().children('div.infoLayer').css({ 
			display: 'block'
		})
		$('div.infoLayer').css({ left: labelWidth, right: 'auto', top: 'auto', bottom: '0px' });
	}, function() {
	  $(this).parent().children('div.infoLayer').css({
			display: 'none'
		})
	});
	
	$('label.bottomright').hover(function() {
	  $(this).parent().children('div.infoLayer').css({ 
			display: 'block'
		})
		$('div.infoLayer').css({ left: 'auto', right: labelWidth, top: 'auto', bottom: '0px' });
	}, function() {
	  $(this).parent().children('div.infoLayer').css({
			display: 'none'
		})
	});
	$('div.infoLayer').css({ display: 'none'}); 
	
	$('td.brochure span.hover').hover(function() {
		$(this).children('img.brochure').css({ display: 'inline'});
	}, function() {
		$(this).children('img.brochure').css({ display: 'none'});
	}); 
});

