//---------------------------------------------------------------

$(document).ready(function(){


	//---------------------------------------------------------------
	// navigation menu init
	//for popup menus on every page
	
	$('ul#mainmenu li.primary').hover(
		function() { $('ul', this).css('display', 'block'); $(this).css('background-color', 'rgb(205, 24, 31)'); },
		function() { $('ul', this).css('display', 'none'); $(this).css('background-color', 'rgb(0, 130, 220)');}
		);
	
});
// end document ready function

    
