$(document).ready(function(){

// --------------------- menu control ---------------------------------------------------------------------------------

$('div#openlink').hover( function() { $(this).children('ul.menuitem').css('display', 'block');
                                      $(this).children('div').css({'backgroundColor' : '#E79C4B',
                                                                   'borderLeft' : '#780000 0px solid',
                                                                   'borderRight' : '#780000 0px solid'})

                                                             .children('a').css('text-decoration','underline'); },




	                   function() { $(this).children('ul.menuitem').css('display', 'none');
                                      $(this).children('div').css({'backgroundColor' : '#AB7246',
                                                                   'borderLeft' : '#ff0000 0px solid',
                                                                   'borderRight' : '#ff0000 0px solid'})

                                                             .children('a').css('text-decoration','none'); }
);
// --------------------------------------------------------------------------------------------------------------------







}) // end of $(document).ready




































