
$(document).ready(function() {
	initImprintLink();
});

function initImprintLink() {

	if ($('#btnImprint').length > 0) {

		$('#btnImprint').css({
			'color': '#FF9C00',
			'cursor': 'pointer'
		});

		$('#btnImprint').click(function() {

			$(this).unbind('click');
			$(this).css({
				'color': '#524232',
				'cursor': 'auto'
			});

			$(this).append(':');

			$(this).parent().append('<div id="imprint"></div>');

			$('#imprint').css('display', 'none');

			$('#imprint').append('herbstgold / Medien & Kommunikation<br />');
			$('#imprint').append('Markus Ehrlich<br />');
			$('#imprint').append('Preunelstra&szlig;e 9c<br />');
			$('#imprint').append('13086 Berlin<br />');
			$('#imprint').append('<br />');
			$('#imprint').append('Telefon: +49 (0) 30 / 20 83 69 62<br />');
			$('#imprint').append('Fax: +49 (0) 3212 / 1 04 24 32<br />');
			$('#imprint').append('<br />');
			$('#imprint').append('Ust-Id: DE256555043<br />');
			$('#imprint').append('<br />');
			$('#imprint').append('<a href="mailto:info@herbstgold.de">info@herbstgold.de</a><br />');
			$('#imprint').append('www.herbstgold.de');
			$('#imprint').append('');

			$('#imprint').fadeIn();
		});
	}	
}

