$(function(){

	/* ENTER */
	jQuery.preloadImages = function(){
		for(var i = 0; i<arguments.length; i++){
			jQuery("<img>").attr("src", arguments[i]);
		}
	};
	$.preloadImages("img/doujima_on.png","img/chayamachi_on.png");

	/* IE7 */
	if ($.browser.msie && !($.browser.version == 6)) {
	$("h2#doujima a").mouseover(function(){
		$(this).prepend("<img src='img/doujima_on.png'>");
		$("img:first",$(this)).animate({
			marginLeft:"-160px"
		},7000,"easeOutCubic");
	}).mouseout(function(){
		$("img",$(this)).remove();
		$(this).append("<img src='img/doujima.png'>");
	}).click(function(){
		$("img:last",$(this)).remove();
		$(this).append("<img src='img/doujima.png'>");
		location.href = "/doujima/";
	});

	$("h2#chayamachi a").mouseover(function(){
		$(this).prepend("<img src='img/chayamachi_on.png'>");
		$("img:first",$(this)).animate({
			marginLeft:"-160px"
		},7000,"easeOutCubic");
	}).mouseout(function(){
		$("img",$(this)).remove();
		$(this).append("<img src='img/chayamachi.png'>");
	}).click(function(){
		$("img:last",$(this)).remove();
		$(this).append("<img src='img/chayamachi.png'>");
		location.href = "/";
	});
	
	}

	/* IE以外 */
	if (!($.browser.msie)) {
	$("h2#doujima a").mouseover(function(){
		$(this).prepend("<img src='img/doujima_on.png'>");
		$("img:first",$(this)).animate({
			marginLeft:"-160px"
		},7000,"easeOutCubic");
	}).mouseout(function(){
		$("img",$(this)).remove();
		$(this).append("<img src='img/doujima.png'>");
	}).click(function(){
		$("img:first",$(this)).remove();
	});

	$("h2#chayamachi a").mouseover(function(){
		$(this).prepend("<img src='img/chayamachi_on.png'>");
		$("img:first",$(this)).animate({
			marginLeft:"-160px"
		},7000,"easeOutCubic");
	}).mouseout(function(){
		$("img",$(this)).remove();
		$(this).append("<img src='img/chayamachi.png'>");
	}).click(function(){
		$("img:first",$(this)).remove();
	});
	
	}



});


