// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Table5' , 'Table5LYR', 'lyr', 'Layout',null,'',0);
 
	F_OM('Table6' , 'Table6LYR', 'lyr', 'Layout',null,'',0);
 
	F_OM('Text20' , 'Text20LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text20','LoadFlic','',0,
	'LoadFlic','Text20','DoDelay','',0,
	'Shown','Text20','Delay',F_Parm('action','DelayOver','delay',3,'continuous',false),0,
	'DelayOver','Text20','RotateFlic','',0),'',0);
 	F_OM('NavigationBar3' , 'NavigationBar3LYR', 'nav', 'Layout',null,'',0);
 
	F_OM('Picture16' , 'Picture16LYR', 'img', 'Layout',null,'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
});
// End Actions

// Begin Navigation Bars
var ButtonsImageMapping = [];
ButtonsImageMapping["NavigationBar3"] = {
	"NavigationButton1" : { image: "./Contact_Nbutton1a_1.jpg", rollover: "./Contact_NRbutton2a_1.jpg", w: 146, h: 25 }
};

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


// End Navigation Bars

