$.fn.equalHeights = function(px) {	$(this).each(function(){		var currentTallest = 0;		$(this).children().each(function(i){				if($(this).height() > currentTallest) { currentTallest = $(this).height(); }		});		if(!px || !Number.prototype.pxToEm) currentTallest = currentTallest.pxToEm($(this)); //use ems unless px is specified or 		// for ie6, set height since min-height isn't supported		var ie6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);		if ($.browser.msie && (ie6)) { $(this).children().css({'height': currentTallest}); }		$(this).children().css({'min-height': currentTallest}); 	});	return $(this);};$.fn.defuscate = function( settings ) {    settings = jQuery.extend({link: true}, settings);    var regex = /\b([A-Z0-9._%-]+)\([^)]+\)((?:[A-Z0-9-]+\.)+[A-Z]{2,6})\b/gi;    return this.each(function() {        if ( $(this).is('a[@href]') ) {            // If it's an <a> element, defuscate the href attribute            $(this).attr('href', $(this).attr('href').replace(regex, '$1@$2'));            // Make sure that the element's contents is not made into a link            var is_link = true;            //alert($(this).attr('href'));        }        // Defuscate the element's contents        $(this).html($(this).html().replace(regex, (settings.link && !is_link ? '<a href="mailto:$1@$2">$1@$2</a>' : '$1@$2')));  });};document.documentElement.className = "js";$(function(){		//add enhanced class to body	$('#Featured li').hover(		function(){$(this).find('div.callBoxLeft:hidden').fadeIn(500);},		function(){$(this).find('div.callBoxLeft:visible').fadeOut(500);}	);		$('#MastHead li').hover(		function(){$(this).find('div#HoverNav:hidden').fadeIn(100);},		function(){$(this).find('div#HoverNav:visible').fadeOut(100);}	);		$('img[class=rollover]').hover( 		function() {this.src = this.src.replace(".gif","_over.gif");}, 		function() {this.src = this.src.replace("_over.gif",".gif"); 	}); 	 	$('#FootLeft').html("&copy;"+(new Date).getFullYear()+" allspeed.");		$('.newsCallout a').hover(		function(){$(this).parent().parent().find('.callCover:hidden').fadeIn(100);},		function(){$(this).parent().parent().find('.callCover:visible').fadeOut(100);}	);		$('input[name=ema_email]').focus(function() {		if ($(this).val() == "email address") $(this).val("");	});		$('input[name=ema_email]').blur(function() {		if ($(this).val() == "") $(this).val("email address");	});		$('.answer').css('display', 'none');		$('.obfuscated').defuscate();		$('li.quest').click(function(event) {		$(this).children('.answer').slideToggle("fast");	}).css('cursor', 'pointer');		$('select').each(function(j) {		var current = this;		$(this).hide();		var dropdown = $(this).attr('name');		$(this).after('<div class="dd" id="'+dropdown+j+'"><div class="dd-body"><ul id="'+$(this).attr('name')+'"><\/ul><\/div><\/div>');		$.each(current, function(n) {			var option = "#"+dropdown+" #Option"+n;			if (n == 0) {				$(current).after('<div class="dd-outer"><div class="dd-button" id="'+dropdown+'Drop'+j+'">'+$(this).text()+'<\/div><\/div>');				$('#'+dropdown+'Drop'+j).click(function() {						$('#'+dropdown).parent().parent().css('display', (!$('#'+dropdown).parent().parent().is(':hidden')) ? 'none' : 'block');									}).css('cursor','pointer');			} else {				$('#'+dropdown).append("<li id='Option"+n+"' name='"+$(this).val()+"'>"+$(this).text()+"<\/li>");				$(option).click(function(event) {						$('#'+dropdown+" li").each(function() {$(this).removeClass('selected')});						$(current).val($(option).attr('name'));						$(this).parent().parent().parent().css('display', 'none');						$("#"+dropdown+'Drop'+j).text($(option).text());						$(this).addClass('selected');				}).css('cursor','pointer');			}		});});		});(function($) {  var cache = [];  // Arguments are image paths relative to the current page.  $.preLoadImages = function() {    var args_len = arguments.length;    for (var i = args_len; i--;) {      var cacheImage = document.createElement('img');      cacheImage.src = arguments[i];      cache.push(cacheImage);    }  }})(jQuery)$(function() {  $(".soon").click(function() {  	alert("Coming Soon...");  });});$(function() {  $(".expand").click(function() {  	$("#WashOut").css('display', 'block');  	$("#Overlay").css('display', 'block');  	initialize();  });    $(".close").click(function() {  	$("#WashOut").css('display', 'none');  	$("#Overlay").css('display', 'none');  	GUnload();  });    $("#WashOut").click(function() {  	$("#WashOut").css('display', 'none');  	$("#Overlay").css('display', 'none');  	GUnload();  });});