
/*
 * auto open the window.
 */

$(document).ready(function() {
	var options = {
		menuBx:"#grMenu li",
		home:1,
		aboutus:2,
		services:3,
		works:4,
		labo:5,
		contact:6,
		setTime:600,
		timer:200,
		easType:'easeOutCirc'
	};
	$(options.menuBx).menuScroll(options);

	$("#mainRight,.openSubWin").click(function (btn) {
		var clicked = $(btn.target);
		var theURL = clicked.attr("href");
		var theClass = clicked.attr("class");
		var typeVal =  clicked.attr("type");
		if (theClass == "amazonBuy"){
			theURL = $(".amazonBuy").eq(0).parent().attr("href");
		}
		if(theURL){
			if (theURL.indexOf("?",0) > 0){
				return true;
			}else{
				var features = "scrollbars=yes,resizable=yes";
				window.open(theURL,"sub",features);
			}
		}else if(typeVal == "submit"){
			return true;
		}
		return false;
	});
	$("#mainLeft").click(function (btn) {
		var clicked = $(btn.target);
		idName = clicked.attr("id");
		if(idName.match(/ctg|menu/i)){return false;}
	});
});

/*
 *
 * JavaScript for jQuery.
 * Copyright (c) 2009 Yohichiroh Kohtani All rights reserved.
 *
 */

