/* COOLjsMenu style + structure file */

var STYLE_0 =
{
    /*1{*/itemoff:[ "+previousItem", 0 ],
    leveloff:[ 0, "+parentItem" ]/*1}*/
};

var STYLE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#786b66",	// color of the item border, if any
		shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"white",		// background color for the items
		bgOVER:"#ed2224"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOn",		// CSS class for items
		OVER:"clsCMOver"	// CSS class  for item which is under mouse
	}
};

var MENU_ITEMS = [
    {pos:"relative", itemoff:[0,127], leveloff:[0,0], style:STYLE_0, blankImage:'images/spacer.gif'},
    {/*2{*/code:'<img src="images/sports.png" height="42" width="127" alt="Sports 2008" />',
			ocode:'<img src="images/sports_over.png" height="42" width="127" alt="Sports 2008" />',
        size:[ 42, 127 ]/*2}*/,
        sub:[
            {itemoff:[24,0], leveloff:[30,9], style:STYLE},
            {code:'Football', url:"football.php",
                size:[ 24, 111 ]
            },
            {code:'Cross Country', url:"crosscountry.php",
                size:[ 24, 111 ]
            },
            {code:'Basketball', url:"basketball.php",
                size:[ 24, 111 ]
            },
			{code:'Volleyball', url:"volleyball.php",
                size:[ 24, 111 ]
            },
			{code:'Baseball', url:"baseball.php",
                size:[ 24, 111 ]
            },
			{code:'Softball', url:"softball.php",
                size:[ 24, 111 ]
            },
			{code:'Golf', url:"404.php",
                size:[ 24, 111 ]
            },
			{code:'Tennis', url:"404.php",
                size:[ 24, 111 ]
            },
			{code:'Track', url:"track.php",
                size:[ 24, 111 ]
            },
			{code:'Band', url:"band.php",
                size:[ 24, 111 ]
            }
        ]
    },
    {code:'<img src="images/scores.png" height="42" width="127" alt="Scores" />', url:"standings.php",
			ocode:'<img src="images/scores_over.png" height="42" width="127" alt="Standings" />',
        size:[ 42, 127 ],
        sub:[]
    },
    {code:'<img src="images/schools.png" height="42" width="127" alt="Schools" />',
			ocode:'<img src="images/schools_over.png" height="42" width="127" alt="Schools" />',
        size:[ 42, 127 ],
        sub:[
            {itemoff:[24,0], leveloff:[30,9], style:STYLE},
            {code:'Search Schools', url:"schools.php?page=search",
                size:[ 24, 111 ]
            },
            {code:'School List', url:"schools.php",
                size:[ 24, 111 ]
            }
        ]
    },
	{code:'<img src="images/aboutus.png" height="42" width="127" alt="About Us" />', url:"about.php",
			ocode:'<img src="images/aboutus_over.png" height="42" width="127" alt="About Us" />',
        size:[ 42, 127 ],
        sub:[]
    },
	{code:'<img src="images/contacts.png" height="42" width="130" alt="Contact Us" />', url:"contact.php",
			ocode:'<img src="images/contacts_over.png" height="42" width="130" alt="Contact Us" />',
        size:[ 42, 127 ],
        sub:[]
    }
];

var menu1 = new COOLjsMenuPRO("menu1", MENU_ITEMS);
menu1.initTop();
