// JavaScript Document$(document).ready(function() {	var now = new Date;	var timeNow = now.getHours();	if (timeNow < 6 || timeNow > 17) {$('div.dealership').removeClass('day').addClass('night');}	$('.withSubs').hover(function(){	  $(".cover", this).stop().fadeTo(150, 0.0, function(){			$(this).hide();	  });	}, function() {	  $(".cover", this).stop().show(0, function(){			$(this).fadeTo(150, 1.0);	  });	});	 $('.oneLink').hover(function(){		  $("h2", this).css("color","#C00");		  $(".cover", this).stop().fadeTo(150, 0.25);	 }, function() {		  $("h2", this).css("color","#000");		  $(".cover", this).stop().fadeTo(150, 1.0);	 });	 		$(".oneLink a").html("");	$(".oneLink").click(function(e){	  e.preventDefault();	  var a = $("a",this).get(0);	  //console.log($(a).attr('target'));        	  if($(a).attr('target') == 'blank') window.open(a.href);	  else window.location = a.href;	});});
