// JavaScript Document

$(document).ready(function() {
	$("#comeonin a").click(function () { 
		$("#ourbeliefs a").removeClass("current");
		$("#letsmeet a").removeClass("current");
		$("#comeonin a").addClass("current");
		$("#text").html("..to The Kitchen, <br />where good design and lasting brands are born of genuine co-creation. We prefer to work with you rather than for you, fitting right on in with the needs of your people and your brand. What's more, our commitment is as limitless as our imagination and we don't disappear until the job's done and done right.");
	});
	
	$("#comeonin a").hover(function () { 
		$("#comeonin a").addClass("hover");
	}, function() {
		$("#comeonin a").removeClass("hover");
	});
	
	$("#ourbeliefs a").click(function () { 
		$("#letsmeet a").removeClass("current");
		$("#comeonin a").removeClass("current");
		$("#ourbeliefs a").addClass("current");
		$("#text").html("The Kitchen's success is measured by the success of our clients. Resourceful by nature we also believe that great design doesn't need to be costly or time consuming. Our reputation for engaging design is matched by the consistent satisfaction expressed by the people we work with.");
	});
	
	$("#ourbeliefs a").hover(function () { 
		$("#ourbeliefs a").addClass("hover");
	}, function() {
		$("#ourbeliefs a").removeClass("hover");
	});
	
	$("#letsmeet a").click(function () { 
		$("#ourbeliefs a").removeClass("current");
		$("#comeonin a").removeClass("current");
		$("#letsmeet a").addClass("current");
		$("#text").html("As Managing Directors and experienced senior designers, you deal directly with us when you deal with The Kitchen. So why not drop us a line and lets talk about how we can work together on your next project. <br /><br />Simply call Chris or Ed on (09) 376 8606 or <br/> <a href='mailto:info@thekitchenmedia.co.nz'>send us an email</a>");
	});
	
	$("#letsmeet a").hover(function () { 
		$("#letsmeet a").addClass("hover");
	}, function() {
		$("#letsmeet a").removeClass("hover");
	});
});