  $(document).ready(function() {
							 
$(" #cssdropdown ul ").css({display: "none"}); // Opera Fix
$(" #cssdropdown li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show();
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});

							 
							 
/*		$('li.headlink').hover(
			function() { $('ul', this).css('display', 'block'); $(this).css('background', '#2D5D49'); }, 
			function() { $('ul', this).css('display', 'none');  $(this).css('background', '#0a4b31'); }
			);
		
		$('ul#cssdropdown li.on').hover(
			function() { $('ul', this).css('display', 'block'); $(this).css('background', '#2D5D49'); }, 
			function() { $('ul', this).css('display', 'none');  $(this).css('background', '#2D5D49'); }
			);

		$('li.headlink ul li').hover(
			function() { $(this).css('background', '#3a725a'); }, 
			function() { $(this).css('background', '#2D5D49'); }
			);*/

      	$('#contNav li div').hover(
			function() { $(this).addClass('on'); },
			function() { $(this).removeClass('on'); }
			);
	  
      	$('.sidebar li.subnav div').hover(
			function() { $(this).addClass('on'); },
			function() { $(this).removeClass('on'); }
			);


});
  



