$(document).ready( 

function() {
		$('.mail').each(function() {
			function invert(s) {
				var r = '';
				for (var i = s.length - 1; i >= 0; i--) { r += s.charAt(i) };
				return r;
			}
			$(this).text(invert($(this).text()))
		})
		if ($.browser.msie) {
			//expression doesn't work - odd?
			$('a[@hreflang="pl"]').after('<span class="lang">[PL]</span>');
		}
	});

	
$(document).ready(
	function()
		{
			$(".tour").click
				( function() 
					{ $(this).next(".box").slideToggle("normal");	
					  $(".tour").not(this).next(".box:visible").slideUp("normal");
				}
			)
		});
		



