$(document).ready(function() {
		
	$('form .field .textfield').first().focus();
	$('form .field .textfield').first().addClass('active');
	
	$('input,textarea').each(function(){
		if( $(this).attr('title') !== '' && $(this).val() == '')
		{
			$(this).val($(this).attr('title'));
		}
	});
	
	$('input,textarea').live('focusin',function(){
		$(this).addClass('active');
		if( $(this).val() == $(this).attr('title'))
		{
			$(this).val('');
		}
	});

	$('input,textarea').live('focusout',function(){
		$(this).removeClass('active');
		
		if( $(this).val() == '')
		{
			$(this).val($(this).attr('title'));
		}
	});
	
	$('.textfield').live('keypress', function(event) {
		if (event.keyCode == '13') {
			this.form.submit();
		};
	});
	
	$('form').submit(function(event){
		$('input, textarea',this).each(function(){
			if( $(this).val() == $(this).attr('title'))
			{
				$(this).val('');
			}
		});
	});
	
	$('.noSpam').each(function(){
		var mail		= $(this).html();
		var a			= '@';
		var domain		= 'sveabyran.se';
		var	complete	= mail+a+domain;
		
		$(this).html(complete);
		$(this).attr('href','mail'+'to:'+complete);
	});
	
});
