﻿$(document).ready(function(){
	$('.mainregions span').hover(
		function(){
			$(this).css({'background-color' : '#dedede', 'cursor' : 'pointer'});
			$(this).css({'color' : '#3c3c3c', 'cursor' : 'pointer'});
		},
		function() {
			$(this).css({'background-color' : '#691020', 'cursor' : 'default'});
			$(this).css({'color' : '#ffffff', 'cursor' : 'pointer'});
		}
	);
	
	$('#menu ul li ul li ul').hover(function() {
	
	},
	function() {
		$(this).css('display', 'none');
	});
});



function expand(list)
{
	if($(list).children('ol').css('display') == 'none')
		$(list).children('ol').slideDown(400);
	else
		$(list).children('ol').css('display', 'none');
}
