﻿        var JQ = jQuery.noConflict(true);
        
        JQ(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.
          JQ('#dmenu li').hover(function() {
          
            JQ(this).addClass('hoverClass');
          
          }, function() {
          
            JQ(this).removeClass('hoverClass');
          
          });
        });
		
		//javascript for submit button on side column
		JQ( function(){
	
			JQ('.submitRollOver').hover( function(){
		
				JQ(this).removeClass('submitRollOver');
		
			},
			function(){
		
				JQ(this).addClass('submitRollOver');
		
			});
			
			JQ('#expiryDate').datepick();
		
		});