// Initialization launched when the DOM tree is ready
$(document).ready(function(){	
	$('#produktpresentation a').click(function()
			{
				var path = $(this).attr('href');

				$.ajax({url: path,
					success:
						function (result)
						{
							//alert(result);
							$('#content').html($(result).find('#content').html());
						},
					error:
						function (result)
						{
							alert("error:"+result);
						},
						contentType: 'html'						
				})
				return false;
			}
	);
	
});


