
// Quick News Box 

var links = new Array ('Weather', 'Traffic', 'Sports', 'Business');

function createQuickNewsCookie(name,value,days) {


}


function tabBox_ContentLoader(content) {
	
	for (i=0; i<links.length; i++) {
		var tabLink = document.getElementById('link_' + links[i]);
		var tabBox = document.getElementById('tabBox_' + links[i]);

		//  Set current tab
		if (content == links[i]) {
			tabLink.setAttribute("class", "current");
			tabBox.setAttribute("class", "tabBox_currentContent");

			//  IE FIX
			tabLink.setAttribute("className", "current");
			tabBox.setAttribute("className", "tabBox_currentContent");

		//  Set all other tabs
		} else {
			tabLink.setAttribute("class", "");
			tabBox.setAttribute("class", "tabBox_content");

			//  IE FIX
			tabLink.setAttribute("className", "");
			tabBox.setAttribute("className", "tabBox_content");
			
		}
	}
}