/*$(document).ready(function(){
	$("#primaryNav").dropdown();

});*/

(function($) {
	$.fn.dropdown = function(options) {
		var settings = jQuery.extend({
			speed: 0
		}, options);
		
		return this.each(function(){
			$(this).children("li").hover(function(){
				$(this).stop();
				$(this).addClass("active").children("ul").show(settings.speed);
			}, function(){
				$(this).stop();
				$(this).removeClass("active").children("ul").hide(settings.speed);
			});
		});
	};
	
})(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 


