$(document).ready(function(){	


	 $('ul#contacts  li').hover(function() {
	   	$('a', this).stop().animate({
	   		'marginLeft' : 5
	   	});
	   }, function() {
	   	$('a', this).stop().animate({
	   		'marginLeft' : 0
	   	});
	   });

	   // $(".replaceAt").replaceWith("@"); 
	   // $(".obfuscate").each(function () { $(this).attr("href", "mailto:"+$(this).text()); });
       //
	   // $('#inhalt').click(function(){
	   // 	window.location.href="mailto:sascha@swelectricite.ch"
	   // })

	
});
	
