$(document).ready(function()
		{

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

		Redirect($('#empfacebook').attr("value"))


	});



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

		Redirect($('#emptwitter').attr("value"))

	});



	$('#empmail').click(function() {
		$('#socialdialog').dialog( {
			title: 'Seite per E-Mail weiterempfehlen',
			autoOpen: true,
			resizable: false,
			draggable: false,
			height: 400,
			width: 925,
			modal: true,
			buttons: { Abbrechen: function() { $(this).dialog('close')	}},
			open: function() {
				var loadText = '<p style="margin-top: 150px; text-align: center;">Lade Dialog...<br /><img src="/gfx/dialog_loader.gif" /></p>';
				var errorText = '<p style="margin-top: 150px; text-align: center;"><span class="ui-icon ui-icon-alert"></span>Fehler: Dialog konnte nicht geladen werden.</p>';

				$(this).html(loadText);

				$.ajax({
					url: '/empfehlen/mail',
					data: { item: $('#empmail').attr("value") },
					success: function(data) { $('#socialdialog').html(data) },
					error: function() { $('#socialdialog').html(errorText) }
				});
			},
			close: function() {	$('#socialdialog').dialog('destroy') }
		});
	});





		});
