
jQuery(document).ready(function() {
	jQuery('#nav li').hover(
		function() { jQuery('ul', this).css('display', 'block'); },
		function() { jQuery('ul', this).css('display', 'none'); });
	jQuery(".test").hrzAccordion({eventTrigger:"click",openOnLoad:"5",cycle: true});
 });
