 /***********************************************
*	(c) Ger Versluis 2000 version 13.20 October 12, 2005    *
*	You may use this script on non commercial sites.	          *
*	www.burmees.nl/menu			          *
*	You may remove all comments for faster loading	          *		
************************************************/
	var NoOffFirstLineMenus=17;				// Number of main menu  items
							// Colorvariables:
							// Color variables take HTML predefined color names or "#rrggbb" strings
							//For transparency make colors and border color ""
	var LowBgColor="Black";				// Background color when mouse is not over
	var HighBgColor="White";				// Background color when mouse is over
	var FontLowColor="White";				// Font color when mouse is not over
	var FontHighColor="White";				// Font color when mouse is over
	var BorderColor="3d4220";				// Border color
	var BorderWidthMain=1;				// Border width main items
	var BorderWidthSub=1;				// Border width sub items
 	var BorderBtwnMain=1;				// Borderwidth between elements
	var BorderBtwnSub=1;				// Borderwidth between elements sub items
	var FontFamily="arial";				// Font family menu items
	var FontSize=12;					// Font size menu items
	var FontBold=0;					// Bold menu items 1 or 0
	var FontItalic=0;					// Italic menu items 1 or 0
	var MenuTextCentered="left";				// Item text position left, center or right
	var MenuCentered="left";				// Menu horizontal position can be: left, center, right
	var MenuVerticalCentered="top";			// Menu vertical position top, middle,bottom or static
	var ChildOverlap=0;					// horizontal overlap child/ parent
	var ChildVerticalOverlap=0;				// vertical overlap child/ parent
	var StartTop=191;					// Menu offset x coordinate. If StartTop is between 0 and 1 StartTop is calculated as part of windowheight
	var StartLeft=10;					// Menu offset y coordinate. If StartLeft is between 0 and 1 StartLeft is calculated as part of windowheight
	var VerCorrect=0;					// Multiple frames y correction
	var HorCorrect=0;					// Multiple frames x correction
	var DistFrmFrameBrdr=0;				// Distance between main menu and frame border
	var LeftPaddng=10;					// Left padding
	var TopPaddng=-1;					// Top padding. If set to -1 text is vertically centered
	var FirstLineHorizontal=0;				// Number defines to which level the menu must unfold horizontal; 0 is all vertical
	var MenuFramesVertical=1;				// Frames in cols or rows 1 or 0
	var DissapearDelay=500;				// delay before menu folds in
	var UnfoldDelay=100;				// delay before sub unfolds	
	var TakeOverBgColor=1;				// Menu frame takes over background color subitem frame
	var FirstLineFrame="";				// Frame where first level appears
	var SecLineFrame="";				// Frame where sub levels appear
	var DocTargetFrame="";				// Frame where target documents appear
	var TargetLoc="";					// span id for relative positioning
	var MenuWrap=1;					// enables/ disables menu wrap 1 or 0
	var RightToLeft=0;					// enables/ disables right to left unfold 1 or 0
	var BottomUp=0;					// enables/ disables Bottom up unfold 1 or 0
	var UnfoldsOnClick=0;				// Level 1 unfolds onclick/ onmouseover
	var BaseHref=" ";					// BaseHref lets you specify the root directory for relative links. 
							// The script precedes your relative links with BaseHref
							// For instance: 
							// when your BaseHref= "http://www.MyDomain/" and a link in the menu is "subdir/MyFile.htm",
							// the script renders to: "http://www.MyDomain/subdir/MyFile.htm"
							// Can also be used when you use images in the textfields of the menu
							// "MenuX=new Array("<img src=\""+BaseHref+"MyImage\">"
							// For testing on your harddisk use syntax like: BaseHref="file:///C|/MyFiles/Homepage/"

	var Arrws=[""];

						// Arrow source, width and height.
						// If arrow images are not needed keep source ""

	var MenuUsesFrames=0;			// MenuUsesFrames is only 0 when Main menu, submenus,
						// document targets and script are in the same frame.
						// In all other cases it must be 1
	var OverFormElements=1;			// Set this to 0 when the menu does not need to cover form elements.
	var RememberStatus=0;			// RememberStatus: When set to 1, menu unfolds to the presetted menu item. 
	var BuildOnDemand=0;			// 1/0 When set to 1 the sub menus are build when the parent is moused over
	var BgImgLeftOffset=5;			// Only relevant when bg image is used as rollover
	var ScaleMenu=0;				// 1/0 When set to 0 Menu scales with browser text size setting
						// When set to 2 only the relevant main item stays highligthed
						// The preset is done by setting a variable in the head section of the target document.
						// <head>
						//	<script type="text/javascript">var SetMenu="2_2_1";</script>
						// </head>
						// 2_2_1 represents the menu item Menu2_2_1=new Array(.......

	var HooverBold=0;				// 1 or 0
	var HooverItalic=0;				// 1 or 0
	var HooverUnderLine=0;			// 1 or 0
	var HooverTextSize=0;			// 0=off, number is font size difference on hoover
	var HooverVariant=0;			// 1 or 0

						// Below some pretty useless effects, since only IE6+ supports them
						// I provided 3 effects: MenuSlide, MenuShadow and MenuOpacity
						// If you don't need MenuSlide just leave in the line var MenuSlide="";
						// delete the other MenuSlide statements
						// In general leave the MenuSlide you need in and delete the others.
						// Above is also valid for MenuShadow and MenuOpacity
						// You can also use other effects by specifying another filter for MenuShadow and MenuOpacity.
						// You can add more filters by concanating the strings
	var MenuSlide="";
	var MenuSlide="progid:DXImageTransform.Microsoft.RevealTrans(duration=.2, transition=19)";
	var MenuSlide="progid:DXImageTransform.Microsoft.GradientWipe(duration=.2, wipeStyle=1)";

	var MenuShadow="";
	var MenuShadow="progid:DXImageTransform.Microsoft.DropShadow(color=#888888, offX=2, offY=2, positive=1)";
	var MenuShadow="progid:DXImageTransform.Microsoft.Shadow(color=#888888, direction=135, strength=3)";

	var MenuOpacity="";
	var MenuOpacity="progid:DXImageTransform.Microsoft.Alpha(opacity=100)";

	function BeforeStart(){return}
	function AfterBuild(){return}
	function BeforeFirstOpen(){return}
	function AfterCloseAll(){return}

// Menu tree:
// MenuX=new Array("ItemText","Link","background image",number of sub elements,height,width,"bgcolor","bghighcolor",
//	"fontcolor","fonthighcolor","bordercolor","fontfamily",fontsize,fontbold,fontitalic,"textalign","statustext");
// Color and font variables defined in the menu tree take precedence over the global variables
// Fontsize, fontbold and fontitalic are ignored when set to -1.
// For rollover images ItemText or background image format is:  "rollover?"+BaseHref+"Image1.jpg?"+BaseHref+"Image2.jpg" 

Menu1=new Array("The Society","blank.htm","rollover?images/Design/Menu 2 Background1.jpg?images/Design/Menu 3 Background.jpg",7,17,145,"","","","","","",-1,-1,-1,"","The Society");
	Menu1_1=new Array("Objectives","Society - Objectives.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Objectives");
	Menu1_2=new Array("Founding of the Society","Society - Founding.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Founding of the Society");
	Menu1_3=new Array("Council","Society - Council.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Council");
	Menu1_4=new Array("Personnel","Society - Personnel.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Staff");
	Menu1_5=new Array("Clubs","Society - Clubs.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Clubs");
	Menu1_6=new Array("Word from the President","Society - President.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,16,170,"","","","","","",-1,-1,-1,"","Word from the President");
	Menu1_7=new Array("Club 35","blank.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",2,17,160,"","","","","","",-1,-1,-1,"","Club 35");
		Menu1_7_1=new Array("More About Club 35","Club 35.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","More About Club 35");
		Menu1_7_2=new Array("Application Form","javascript:window.open('Documents/Club 35/Aansoekvorm.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Club 35 Application Form");

Menu2=new Array("The Breed","blank.htm","rollover?images/Design/Menu 2 Background1.jpg?images/Design/Menu 3 Background.jpg",8,17,140,"","","","","","",-1,-1,-1,"","The Breed");
	Menu2_1=new Array("History","Breed - History.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","History");
	Menu2_2=new Array("Why Brahman","Breed - Why Brahman.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Why Brahman");
	Menu2_3=new Array("Crossbreeding","Breed - Crossbreeding.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Crossbreeding");
	Menu2_4=new Array("Breed Strongpoints","Breed - Strongpoints.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Breed Strongpoints");
	Menu2_5=new Array("Standard of Excellence","Breed - Standards.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Standard of Excellence");
	Menu2_6=new Array("Brahman Carcase","Breed - Carcase.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Brahman Carcase");
	Menu2_7=new Array("Genetic Trend","javascript:window.open('TrendGenetic.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Genetic Trend");
	Menu2_8=new Array("Breed’s EBV’s","javascript:window.open('PercentileENG.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Breed’s EBV’s");

Menu3=new Array("Breed Database","blank.htm","rollover?images/Design/Menu 2 Background1.jpg?images/Design/Menu 3 Background.jpg",7,17,140,"","","","","","",-1,-1,-1,"","Breed Database");
	Menu3_1=new Array("Animal Enquiry","javascript:window.open('http://abri.une.edu.au/online/cgi-bin/i4.dll?1=212F2F3D&2=2431&3=56&5=2B3C2B3C3A','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Animal Enquiry");
	Menu3_2=new Array("EBV Enquiry","javascript:window.open('http://abri.une.edu.au/online/cgi-bin/i4.dll?1=212F2F3D&2=2031&3=56&5=2B3C2B3C3A','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","EBV Enquiry");
	Menu3_3=new Array("Member Enquiry","javascript:window.open('http://abri.une.edu.au/online/cgi-bin/i4.dll?1=212F2F3D&2=2831&3=56&5=2B3C2B3C3A','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Member Enquiry");
	Menu3_4=new Array("Sale Catalogues","javascript:window.open('http://abri.une.edu.au/online/cgi-bin/i4.dll?1=212F2F3D&2=3228&3=56&5=2B3C2B3C3A','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Sale Catalogues");
	Menu3_5=new Array("Semen Catalogues","javascript:window.open('http://abri.une.edu.au/online/cgi-bin/i4.dll?1=212F2F3D&2=2928&3=56&5=2B3C2B3C3A&11=5F515A','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Semen Catalogues");
	Menu3_6=new Array("Mating Predictor","javascript:window.open('http://abri.une.edu.au/online/cgi-bin/i4.dll?1=212F2F3D&2=233B3F&3=56&5=2B3C2B3C3A','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Mating Predictor");
	Menu3_7=new Array("Member Login","javascript:window.open('https://abri.une.edu.au/online/cgi-bin/i4.dll?1=BCBS&2=lo','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Member Login");

Menu4=new Array("Breed Improvement","blank.htm","rollover?images/Design/Menu 2 Background1.jpg?images/Design/Menu 3 Background.jpg",5,17,140,"","","","","","",-1,-1,-1,"","Breed Improvement");
	Menu4_1=new Array("Breed Manual","Performance.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Breed Manual");
	Menu4_2=new Array("Breedplan South Africa","javascript:window.open('http://www.breedplan.co.za','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Breedplan South Africa");
	Menu4_3=new Array("Breedplan International","BreedImprove - Breedplan.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Breedplan International");
	Menu4_4=new Array("Genestar","BreedImprove - Genestar.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Genestar");
	Menu4_5=new Array("Brahdex Classification","BreedImprove - Brahdex.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Brahdex Classification");

Menu5=new Array("Registration Matters","javascript:window.open('BrahmanRegulations.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,140,"","","","","","",-1,-1,-1,"","Registration Matters");

Menu6=new Array("Performance Testing","blank.htm","rollover?images/Design/Menu 2 Background1.jpg?images/Design/Menu 3 Background.jpg",8,17,140,"","","","","","",-1,-1,-1,"","Performance Testing");
	Menu6_1=new Array("Performance Testing","javascript:window.open('Performance Testing (05.2009).pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Breed Manual");
	Menu6_2=new Array("Breedplan Manual","javascript:window.open('Breedplan Manual.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Breedplan Manual");
	Menu6_3=new Array("Awards","javascript:window.open('Toekenning Eng (02.2010).pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Awards");
	Menu6_4=new Array("Guide to EBV’s","javascript:window.open('BasicGuidetoEBVs.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Guide to EBV’s");
	Menu6_5=new Array("Management Groups NB","javascript:window.open('ManagementGroups.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Management Groups NB");
	Menu6_6=new Array("Small Herd Tips","javascript:window.open('SmallHerds.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Small Herd Tips");
	Menu6_7=new Array("Fertility EBV","javascript:window.open('BLUPwaarde.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Fertility EBV");
	Menu6_8=new Array("Brahman Breeding Plan","javascript:window.open('BreedingPlan.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Brahman Breeding Plan");

Menu7=new Array("Trait Leaders","Trait Leaders.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,140,"","","","","","",-1,-1,-1,"","Trait Leaders");

Menu8=new Array("Birth Notifications","blank.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",2,17,140,"","","","","","",-1,-1,-1,"","Birth Notifications");
	Menu8_1=new Array("A - K","BirthAK.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,140,"","","","","","",-1,-1,-1,"","Birth Notifications A - K");
	Menu8_2=new Array("L - Z","BirthLZ.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,140,"","","","","","",-1,-1,-1,"","Birth Notifications L - Z");

Menu9=new Array("HerdMASTER","Blank.htm","rollover?images/Design/Menu 2 Background1.jpg?images/Design/Menu 3 Background.jpg",2,17,140,"","","","","","",-1,-1,-1,"","HerdMASTER");
	Menu9_1=new Array("Information","javascript:window.open('http://www.agribsa.co.za/HerdMasterIndex.htm','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,140,"","","","","","",-1,-1,-1,"","Information");
	Menu9_2=new Array("Course Dates","javascript:window.open('http://www.agribsa.co.za','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,140,"","","","","","",-1,-1,-1,"","Course Dates");

Menu10=new Array("Buying Brahman","Buying - Wanted.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,140,"","","","","","",-1,-1,-1,"","Buying Brahman");

Menu11=new Array("Shows","blank.htm","rollover?images/Design/Menu 2 Background1.jpg?images/Design/Menu 3 Background.jpg",7,17,140,"","","","","","",-1,-1,-1,"","Shows");
	Menu11_1=new Array("Show Package","javascript:window.open('SkouPakketEng.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,200,"","","","","","",-1,-1,-1,"","Show Package");
	Menu11_2=new Array("Judges & Breeding Policy","Judges - Policy.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,200,"","","","","","",-1,-1,-1,"","Judges & Breeding Policy");
	Menu11_3=new Array("Principles of Judging","Judges - Principles.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,200,"","","","","","",-1,-1,-1,"","Principles of Judging");
	Menu11_4=new Array("Breeder Awards","Judges - Awards.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,200,"","","","","","",-1,-1,-1,"","Breeder Awards");
	Menu11_5=new Array("2010 Show Results","Show - Results 2010.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,200,"","","","","","",-1,-1,-1,"","Show Results 2010");
	Menu11_6=new Array("2009 Show Results","Show - Results 2009.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,200,"","","","","","",-1,-1,-1,"","Show Results 2009");
	Menu11_7=new Array("2010 Judges","javascript:window.open('2010Beoordelaars.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,200,"","","","","","",-1,-1,-1,"","2010 Judges");

Menu12=new Array("Sales","blank.htm","rollover?images/Design/Menu 2 Background1.jpg?images/Design/Menu 3 Background.jpg",5,17,140,"","","","","","",-1,-1,-1,"","Sales");
	Menu12_1=new Array("Note on EBV’s","javascript:window.open('VeilingExplanatory.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Note on EBV’s");
	Menu12_2=new Array("The breed’s EBV’s","javascript:window.open('VeilingIntroEng.pdf','_new')","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","The breed’s EBV’s");
	Menu12_3=new Array("Pamphlets & Catalogues","Sales - Pamphlets.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","Pamphlets & Catalogues");
	Menu12_4=new Array("2010 Sale Results","Sales - Results 2010.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","2010 Sale Results");
	Menu12_5=new Array("2009 Sale Results","Sales - Results 2009.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,160,"","","","","","",-1,-1,-1,"","2009 Sale Results");

Menu13=new Array("Documentation","Documents.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,140,"","","","","","",-1,-1,-1,"","Documentation");

Menu14=new Array("Publications & Articles","Publications.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,140,"","","","","","",-1,-1,-1,"","Publications");

Menu15=new Array("Promotional Items","Promotional Items.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,140,"","","","","","",-1,-1,-1,"","Promotional Items");

Menu16=new Array("Breeder Websites","Links-Breeders.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,140,"","","","","","",-1,-1,-1,"","Breeder Websites");

Menu17=new Array("Links","Links.htm","rollover?images/Design/Menu 2 Background.jpg?images/Design/Menu 3 Background.jpg",0,17,140,"","","","","","",-1,-1,-1,"","Links");