/*////////////////////////////////////////////////////////////*/
/* MatthiasSchuetz.com JavaScript | (C) 2009 Matthias Schuetz */
/*////////////////////////////////////////////////////////////*/

$(document).ready(function(){
	$("a#lang_de, a#lang_en")
		.mouseover(function(){
			$(this).stop().animate({ opacity: 0.6 }, 200 );
		})
		.mouseout(function(){
			$(this).stop().animate({ opacity: 1 }, 500 );
		})
});
