// Jquery Settings BEGIN
$(document).ready(function(){

						   //// Active List Path Effect
						   $("#navBar ul ul").each(function(i){
													   $(this).hover(function(){
																			  $(this).parent().find("a").slice(0,1).addClass("active");
																			  },function(){
																				  $(this).parent().find("a").slice(0,1).removeClass("active");
																			  });
													   });
						   
						   //// Hides Title Attribute on the Drop Down Navigation but Retains it for SEO
						   $('#navBar a[title]').each( function(){
																var $this = $(this);
																$this.data('title',$this.attr('title'));
																$this.removeAttr('title');
																});
						   $('#navBar a').hover( function() {
												  var $this = $(this);
												  var title = $this.data('title');
												  });

						   // Jquery Search Watermark
						   var onoff = $('input[name=zoom_query]');
						   var msg = 'Search';
						   if ($.trim(onoff.val()) == "" || $.trim(onoff.val())==msg) {
							   onoff.val(msg);
						   }
						   else {
							   onoff.removeClass('grayText');
						   }
						   onoff.focus(function(){
												if ($.trim(onoff.val()) == msg) {
													onoff.val("");
												}
												});
						   onoff.blur(function(){
											   if ($.trim(onoff.val()) == "") {
												   onoff.val(msg);
											   }
											   });
						   
						   // Stops Browsers from Autocompleting BEGIN
						   $('#formFirstname').attr('autocomplete','off');
						   // Stops Browsers from Autocompleting END
						   });					   
//jQuery Settings END





// JavaScript Settings BEGIN

// Google Analytics UA Code
var UAcode = 'UA-21944504-1';
// JavaScript Settings END
