YUI({
    skin: {
        overrides: {
            tabview: ['none']
        }
    }
}).use('tabview', function(Y) {

	
	var href = location.href;
	if(href.indexOf('/contact/') > -1 || href.indexOf('/privacy/') > -1 )
	{
		var body = Y.one('body');
		body.addClass('tertiary');
	}
	
	
	Y.all('.tabs').each(
		function(o){
			var tabview = new Y.TabView({
				srcNode: o
			});
			tabview.render();

			Y.one('#what-happen').removeClass("hidden");
			Y.one('#join-team').removeClass("hidden");
			


		}
	);

	
	
	
});


