// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('NavigationBar1' , 'NavigationBar1LYR', 'nav', 'Layout',null,'',0);
 
	F_OM('Text3' , 'Text3LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text3','Show','',0),'',0);
 	F_OM('Picture15' , 'Picture15LYR', 'img', 'Layout',null,'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
});
// End Actions

// Begin Navigation Bars
var ButtonsImageMapping = [];
ButtonsImageMapping["NavigationBar1"] = {
	"NavigationButton1" : { image: "./Home_Hhighlighted_1.gif", rollover: "./Home_HRhighlightedRollover_2.gif", w: 190, h: 25 },
	"NavigationButton2" : { image: "./UK_Dealers_Nregular_1.gif", rollover: "./UK_Dealers_NRhighlightedRollover_1.gif", w: 190, h: 20 },
	"NavigationButton3" : { image: "./UK_News___Events_Nregular_1.gif", rollover: "./UK_News___Events_NRhighlightedRollover_1.gif", w: 190, h: 20 },
	"NavigationButton4" : { image: "./Berthoud_Products_Nregular_1.gif", rollover: "./Berthoud_Products_NRhighlightedRollover_1.gif", w: 190, h: 20 }
};

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


// End Navigation Bars


