jQuery.noConflict();
jQuery(document).ready(function() {
	jQuery('ul.primaryNav a[title]').noTooltips();
	jQuery('ul.primaryNav li').hover(
        function () {
		jQuery(this).children('ul').show();
        },function(){
		jQuery(this).children('ul').hide();
	});//hover

}); 

// Title: NoTooltips
// Author: Matt Higgins
// Description: Kills Anchor Tag titles on hover
//			    (Fixes drop-down dissappear bug in FF & IE)
// Usage: jQuery('#primaryNav a[title]').noTooltips();

(function($) {
	$.fn.noTooltips = function() {
		return this.each(function() {
			var title = $(this).attr('title');
			$(this).hover(onHover,onHoverOut(title));
		});
		
		function onHover() {
			$(this).attr('title','');
		}
		
		function onHoverOut(title)
		{
			$(this).attr('title', title);
		}
		
	}
})(jQuery);


// Get Date For Form Processor
var getDate=new Date()
var getYear=getDate.getYear()
if (getYear < 1000)
getYear+=1900
var getDay=getDate.getDay()
var getMonth=getDate.getMonth()+1
if (getMonth<10)
getMonth="0"+getMonth
var getCurrentDay=getDate.getDate()
if (getCurrentDay<10)
getCurrentDay="0"+getCurrentDay
theDate = getMonth+"/"+getCurrentDay+"/"+getYear

