// JavaScript Document
//alert("test");
/*$(document).ready(function(){
	//jquery code goes here	to make IE6 hover work.
	//It adds the the css class .hoverClass to the li element and then removes when user mouses off.
	//the li element holds the nested ul which needs to be displayed when hovered upon.
  $('#dmenu li').hover(function() {
  
	$(this).addClass('hoverClass');
  
  }, function() {
  
	$(this).removeClass('hoverClass');
  
  });					   
});*/