//Rollover with jQuery
// ---------------------------------------------------------------------------
function initRollOverImages() {
	var image_cache = new Object();
		$("a.rollover img, img.rollover").each(function(i) {
		var imgsrc = this.src;
		var dot = this.src.lastIndexOf('.');
		var imgsrc_on = this.src.substr(0, dot) + '_on' + this.src.substr(dot, 4);
		image_cache[this.src] = new Image();
		image_cache[this.src].src = imgsrc_on;
		$(this).hover(
		function() { this.src = imgsrc_on; }, // onmouseover
		function() { this.src = imgsrc; }); // onmouseout
	});
}

$(document).ready(initRollOverImages);


/* function modalwindow window
--------------------------------------------------------------- */
window.onload = function() {
		var anotherwindow = document.getElementsByTagName('a');
		for (var i=0;i<anotherwindow.length;i++) {
			if (anotherwindow[i].getAttribute('className') == 'modalwindow' || anotherwindow[i].getAttribute('class') == 'modalwindow') {
				anotherwindow[i].onclick = function () {
				return winopen(this.href)
				}
			}
		}
	};
	function winopen(url) {
		window.open(url,'modalwindow','width=760,height=600,scrollbars=1,resizable=1'); //横幅760px、縦幅600px、スクロール有、リサイズ有
		return false;
	};


//adjust-ie
// ---------------------------------------------------------------------------
$(function() {
	$('#header_inner .section_info ul li:first-child')
	.css('width','32px')
})

