$(document).ready( function() {

	$('.register').submit ( function() {
		
		var email = $('#newsletter_email').val();

		$.post('xmlhttp/newsletter.php', { email: email }, function(data){
			if(data == 'ok'){
				$('.register').hide();
				$('.error').html('');
				$('.reg_done').show();

				pageTracker._trackPageview("/newsletter_register.html");
			}else{
				$('.error').html(data);
				$('.error').show();
			}
		});

		return false;
	});

	//$('a.lightbox').lightBox();

	$('#gallery a').lightBox({
		fixedNavigation:true,
		imageLoading: '/static/images/loading.gif',
		imageBtnClose: '/static/images/close.gif',
		imageBtnPrev: '/static/images/prev.gif',
		imageBtnNext: '/static/images/next.gif',
		txtImage: 'Bild',
		txtOf: 'av'
	});
});

Cufon.replace ('h1, h3, h2, .placeholder-top .menu a, .placeholder-bottom li a.header', { fontFamily: 'santosh', hover: true })

function nemo(namn,foretag){
	location.href= 'mailto:'+namn+'@'+foretag;
	return false;
}
