$(document).ready(function() {
	var visible= false;
	$('#tim_link').mouseover(function() {
		if(visible) {
			return;
		} else {
			$('tracker_box').hide();
			$('.tim_box').fadeIn();
			visible= true;
		}
	}).mouseout(function() {
		$('.tim_box').fadeOut();
		visible= false;
	});
	
	$('#tracker_link').mouseover(function() {
		if(visible) {
			return;
		} else {
			$('.tim_box').hide();
			$('.tracker_box').fadeIn();
			visible= true;	
		}
	}).mouseout(function() {
		$('.tracker_box').fadeOut();
		visible= false;
	});
});

function email_me() {
	var name= $('#name').val();
	var email= $('#email').val();
	var budget= $('#budget').val();
	var message= $('#message').val();
	if(name.length > 0 && email.length > 0 && message.length > 0) {
	$.post('http://myintarweb.com/ajax/email?name=' + name + '&email=' + email + '&budget=' + budget + '&message=' + message,
		function(data) {
			if(data== 1) {
				$('#contact_me').fadeOut();
				$('#welcome').html('<span>Thanks! Someone will be in touch soon.</span> Wi nøt trei a høliday in Sweden this yër?');
				$('#sub').html('See the løveli lakes, The wøndërful telephøne system And mäni interesting furry animals.');
			}
		}
	);
	} else {
		$('#welcome').html('<span>Whoa! You need to at least fill out your name,</span> email and a description of what you are looking for.');
		$('#sub').html('The fields highlighted in red are required, its not that much really, you should be fine.');
		$('#name').addClass('highlight');
		$('#email').addClass('highlight');
		$('#message').addClass('highlight');
	}
}