var Cartel = {
				
	head: 0,
	
	request: function(obj) {
		$('#content').load(obj.href + ' div#ajax', '', function() {
			Cartel.head = (Cartel.head + 1) % 3;
			$('#head').css('background-image', 'url(images/g_head'+(Cartel.head+1)+'.png)');
			if(pageTracker) pageTracker._trackPageview(obj.href);
		});
		return false;
	},
	
	services: function(type, a) {
		$('#services')[0].className = 'content-inner '+type;
		$('#services div.list a').removeClass('active');
		$(a).addClass('active');
		$('#services div.info div').hide();
		$('#services div.info div.'+type).show();
		return false;
	},
	
	close: function() {
		$('#content').html('');
		return false;
	}
	
}