﻿

/* ============================================================================== colorRows - 'rowTint'
	Automatic coloured rows | Bite Size Standards
	http://bitesizestandards.com/bites/automatic-coloured-rows

function colorRows() {
	var myTR = document.getElementsByTagName('tr');
	for (var i=0;i<myTR.length;i++) {
		if (i%2) {
			myTR[i].className = 'rowTint';
		}
	}
}*/

/* ============================================================================== initRollovers - 'imgover'
	Standards Compliant Rollover Script
	Author : Daniel Nolan
	http://www.bleedingego.co.uk/webdev.php
*/
function smartRollover() {
if(document.getElementsByTagName) {
var images = document.getElementsByTagName("img");

for(var i=0; i < images.length; i++) {
if(images[i].getAttribute("src").match("_off."))
{
images[i].onmouseover = function() {
this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));
}
images[i].onmouseout = function() {
this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));
}
}
}
}
}

if(window.addEventListener) {
window.addEventListener("load", smartRollover, false);
}
else if(window.attachEvent) {
window.attachEvent("onload", smartRollover);
}

/* ============================================================================== makeBlankLink - 'blankLink'

function makeBlankLink(){
	var allLink = document.getElementsByTagName('a');
	for(i=0; i<allLink.length; i++){
		if (allLink[i].className == 'blankLink'){
			allLink[i].target = '_blank';
		}
	}	
}
*/
/* ============================================================================== googlemap
*/
function map(){
	var map = new GMap(document.getElementById("map"));
	map.addControl(new GLargeMapControl());
	map.addControl(new GMapTypeControl());
	map.centerAndZoom(new GPoint(135.188373, 34.694732), 1);

	var marker = new GMarker(new GLatLng(34.694732, 135.188373));
	GEvent.addListener(marker, "click", function() {
		marker.openInfoWindowHtml("<address><strong>紅茶教室Lakshimi</strong> <br />〒650-0004　兵庫県神戸市中央区中山手通2丁目4-8<br />TEL:078-391-8841</address>");
	});
	map.addOverlay(marker);
}
