jQuery(document).ready(function() {


	jQuery('#cssdropdown li.headlink').hover(

		function() { jQuery('ul', this).css('display', 'block'); },

		function() { jQuery('ul', this).css('display', 'none'); }

	);


}); 
