// JavaScript Document
jQuery().ready(function(){
	
	jQuery('#navigation').accordion({
		active: '.selected',
		header: '.head',
		navigation: true,
		fillSpace: false,
		alwaysOpen: true,
		animated:'slide',
		event: "mouseover",
		autoheight: false
	});
	
	if ($('.main-selected').length>0){
		var mySelectedElement = $('.selected > a > img');
		mySelectedElement[0].src= "images/" + mySelectedElement[0].id + "_hover.png";
	}
	
	if ($('.sub-selected').length>0){
		mySelectedElement = $('.sub-selected > a > img');
		mySelectedElement[0].src= "images/" + mySelectedElement[0].id + "_hover.png";
	}
	
	var myAccordion = jQuery('#navigation');
	//myAccordion.accordion('activate', 2);
	
	$("#navigation > li > div").hover(
		function () {
			if (!$(this).hasClass("main-selected")){
				
				mySelectedElement = $(this).children('a:first').children('img:first');
				mySelectedElement[0].src= "images/" + mySelectedElement[0].id + "_hover.png";
			}
		}, 
		function () {
			if (!$(this).hasClass("main-selected")){
				mySelectedElement = $(this).children('a:first').children('img:first');
				mySelectedElement[0].src= "images/" + mySelectedElement[0].id + ".png";
			}
		}
    );

	$("#navigation > li > ul > div").hover(
		function () {
			if (!$(this).hasClass("sub-selected")){
				mySelectedElement = $(this).children('a:first').children('img:first');
				mySelectedElement[0].src= "images/" + mySelectedElement[0].id + "_hover.png";
			}
		}, 
		function () {
			if (!$(this).hasClass("sub-selected")){
				mySelectedElement = $(this).children('a:first').children('img:first');
				mySelectedElement[0].src= "images/" + mySelectedElement[0].id + ".png";
			}
		}
    );

});

