﻿
var HOMEPAGE = {

	tabs: 'homepageTabs',

	init: function () {
		this.tabs = document.getElementById(this.tabs);
		Dom.addClass(this.tabs.parentNode, 'yui-skin-sam');
		this.tabs = new YAHOO.widget.TabView(this.tabs);
	}

};

Event.onDOMReady(HOMEPAGE.init, HOMEPAGE, true);
