function pageTop() {
	var x1 = x2 = x3 = 0;
	var y1 = y2 = y3 = 0;
	if (document.documentElement) {
		x1 = document.documentElement.scrollLeft || 0;
		y1 = document.documentElement.scrollTop || 0;
	}
	if (document.body) {
		x2 = document.body.scrollLeft || 0;
		y2 = document.body.scrollTop || 0;
	}
	x3 = window.scrollX || 0;
	y3 = window.scrollY || 0;
	var x = Math.max(x1, Math.max(x2, x3));
	var y = Math.max(y1, Math.max(y2, y3));
	window.scrollTo(Math.floor(x / 2), Math.floor(y / 2));
	if (x > 0 || y > 0) {
		window.setTimeout("pageTop()", 25);
	}
}
(function($){
	$(function(){
		var a=0,b=$("#ourproducts .caution");
		b.css({"position":"absolute"});
		b.animate({"opacity":"0"},0).hide();
		b.eq(a).show().animate({"opacity":"1"},0);
		$("#ourproducts").everyTime(5000,function(c){
			b.eq(a).animate({"opacity":"0"},{duration:500,complete:function(){$(this).hide();}});
			a += 1;
			if(a >= b.length) a = 0;
			b.eq(a).show().animate({"opacity":"1"},{duration:500});
		});
		$("#wp-calendar th[abbr=日曜日]").css("color","#f00");
		$("#wp-calendar th[abbr=土曜日]").css("color","#06c");
		$("#go-top").click(function(){
			pageTop();
			return false;
		});
		var currentDate = new Date();
		var count = 72;
		var content = '<img class="new" src="http://www.millionrace.jp/img/new_02.gif" alt="NEW">';
		$("#thumbs .published").each(function(){
			var time = $(this).attr("title").split(".");
			var entryDate = new Date(time[0], time[1]-1, time[2]);
			var gap = (currentDate.getTime() - entryDate.getTime())/(60*60*1000); 
			gap = Math.ceil(gap);
			if(gap <= count){
				$(this).parent().prev().children().children().before(content);
			}
		});
		$("html").css("background","#1B1B1B");
		if(!$("#container").is(".products",".dealers")) $(".hentry","#content").eq(0).css("paddingTop","3px");
		$(".current_page_item").children("a").addClass("current")
	});
})(jQuery);

