﻿//マップ表示
$(function(){
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		
		var center = new GLatLng(34.942518,137.146953);
		map.setCenter(center, 14);
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());		
		
		var point = new GLatLng(34.936513,137.146953);
		var marker = new GMarker(point);
		map.addOverlay(marker);
		marker.openInfoWindowHtml("<font size='+1'><u><b>アウディ岡崎‎</b></u></font><br>〒444-0201<br>愛知県岡崎市上和田町字北天白10<br>TEL：0564-55-0101 / FAX：0564-55-0102");
	}
});

$(function(){
	if('\v'=='v'){
		$("#tab2").slideUp("slow");
	}
	
	$("ul.panel li:not("+$("ul.tab li a.selected").attr("href")+")").hide();
	$("ul.tab li a").click(function(){
		$("ul.tab li a").removeClass("selected");
		$(this).addClass("selected");
		$("ul.panel li").slideUp("slow");
		$($(this).attr("href")).slideDown("slow");
		return false;
	});
	
});





