$(document).ready(function() {
				
	$('.menueItem').hover(
		function() {
			$(this).addClass('menueItem_hover');
			$(this).children('a').addClass('menueLink_hover');
		},
		function() {
			$(this).removeClass('menueItem_hover');
			$(this).children('a').removeClass('menueLink_hover');
		}
	);

	$('input, textarea').focus(function() {$(this).addClass('inputFocus');});
	$('input, textarea').blur(function() {$(this).removeClass('inputFocus');});

	$('#contact_patch').hover(
		function() {$(this).attr('src', 'images/contact_patch_hover.png').addClass('imgLink');},
		function(){$(this).attr('src', 'images/contact_patch.png').removeClass('imgLink');}
	).click(function() { $('#magicContactBox').toggle();});

	$('#magicContactBox').hover(
		function() {}, 
		function() {
			$(this).toggle();
		}
	);


	$('.langLink').hover(
		function() {
			$(this).addClass('langLink_hover');
		},
		function() {
			$(this).removeClass('langLink_hover');
		}
	);
});

function sm(d, n){
	location.href = 'mailto:' + n + '@' + d;
}
