// initialize tabbed panels
var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");

// make sure tabs look good after being clicked ///////////////////
function blurControl()
{
	this.blur();
}

obj = document.getElementById('tab1');
if (obj) {obj.onclick = blurControl;}

obj = document.getElementById('tab2');
if (obj) {obj.onclick = blurControl;}

obj = document.getElementById('tab3');
if (obj) {obj.onclick = blurControl;}

obj = document.getElementById('tab4');
if (obj) {obj.onclick = blurControl;}
///////////////////////////////////////////////////////
