// Begin Navigation Bars
var ButtonsImageMapping = [];
ButtonsImageMapping["UnknownObject1"] = {
	"NavigationButton1" : { image: "./hi_b1.gif", rollover: "./hi_b1_over.gif", w: 149, h: 27 },
	"NavigationButton2" : { image: "./hi_b2.gif", rollover: "./hi_b2_over.gif", w: 149, h: 27 },
	"NavigationButton3" : { image: "./hi_b3.gif", rollover: "./hi_b3_over.gif", w: 149, h: 27 },
	"NavigationButton4" : { image: "./hi_b4.gif", rollover: "./hi_b4_over.gif", w: 149, h: 27 }
};

$(document).ready(function(){
	$.fn.nofNavBarOptions({ navBarId: "UnknownObject1", rollover: true, autoClose: false });
	$("#UnknownObject1").nofNavBar({isMain: true, orientation: "horizontal" });
	$("#UnknownObject1 ul").hide();
});


// End Navigation Bars

