function initRollOverImages() {  
	var image_cache = new Object();  
		$("a img.over , input.over").not("[src*='_over.']").each(function(i) {  
			var imgsrc = this.src;  
			var dot = this.src.lastIndexOf('.');  
			var imgsrc_over = this.src.substr(0, dot) + '_over' + this.src.substr(dot, 4);  
			image_cache[this.src] = new Image();  
			image_cache[this.src].src = imgsrc_over;  
			$(this).hover(  
				function() { this.src = imgsrc_over; },  
				function() { this.src = imgsrc; }  
				);  
		});  
	}  
$(document).ready(initRollOverImages);  



//map

function load() {
  if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("map"));
	map.addControl(new GLargeMapControl());
	map.addControl(new GMapTypeControl());
	map.setCenter(new GLatLng(34.76566182326365, 135.6636267900467), 18);

  map.openInfoWindowHtml(map.getCenter(),"<br>Artisan beauty box \"anana\" ");
  }
}

$(function() {
	$(".popup").click(function(){
		window.open(this.href, "WindowName","width=700,height=720,resizable=no,scrollbars=yes");
		return false;
	});
});
