$(document).ready(function() {
	$(".h_tabs").fadeOut("fast");
	$("#tab_1").fadeIn("fast");
	$(".tab_nav").click(function(){
			var to_open = $(this).attr('href');
			$(".current").removeClass("current");
			$(this).addClass("current");
			$(".h_tabs").fadeOut("fast");
			$(to_open).fadeIn("slow");
	
			return false;
	});
	$("#locations").click(function(){
	if($(this).hasClass('not_shown')){
		$(".more_locations").fadeIn("slow");
		$(this).text('Less locations');
		$(this).removeClass('not_shown');
	}else{
		$(".more_locations").fadeOut("slow");
		$(this).text('More locations');
		$(this).addClass('not_shown');
	}
	return false;
	});
	$("#email").focus(function(){
		if($(this).val() == "Your email"){ $(this).val("");}
	});
	$("#email").blur(function(){
		if($(this).val() == ""){ $(this).val("Your email");}
	});
	$("#name").focus(function(){
		if($(this).val() == "Your name"){ $(this).val("");}
	});
	$("#name").blur(function(){
		if($(this).val() == ""){ $(this).val("Your name");}
	});
	$("#phone").focus(function(){
		if($(this).val() == "Your telephone"){ $(this).val("");}
	});
	$("#phone").blur(function(){
		if($(this).val() == ""){ $(this).val("Your telephone");}
	});
	$("#message").focus(function(){
		if($(this).val() == "Your message"){ $(this).val("");}
	});
	$("#message").blur(function(){
		if($(this).val() == ""){ $(this).val("Your message");}
	});
});