function rotate_masthead (current_slug) {
	$.getJSON("/inc/masthead.php", { slug: current_slug }, function(json){
		$("#masthead").attr("style","background-color: #"+json.background+"; background-image: url('/media/images/"+json.image+"'); opacity:0;").attr("class",json.client_slug);
		$("#masthead a").remove();
		if (json.slug != undefined) {
			$("#masthead").append("<a href=\"/case-studies/"+json.slug+"/\">View Case Study</a>");
		}
	});
}

$(document).ready(function(){
	
	// Place top and bottom border images in the masthead
	$("#masthead").prepend('<img src="/img/masthead-border.png" alt="" class="border" />');
	$("#masthead").append('<img src="/img/masthead-border.png" alt="" class="border bottom" />');
	
	// Case study section tabs
	$("ul.tabs").tabs("#case-study > article section");
	
	// Staff section bio controls
	$("#staff ul > li").click(function() {
		$("#staff li.active").removeClass("active");
		$(this).addClass("active");
	});
	/*
	$.timer(5000, function (timer) {
		$("#masthead").fadeTo("slow",0,function(){
			var current_slug = $("#masthead").attr("class");
			rotate_masthead(current_slug);
		});
		$("#masthead").fadeTo("slow",1);
	});
	*/
	
});