// JavaScript Document

jQuery(document).ready(function (){

	jQuery("a.blank").click(
			function(){					
				window.open(this.href);
				return false;
			});

	jQuery("a.popup").click(
			function(){					
				window.open(this.href,'_blank',' status=no, toolbar=no, location=no, menubar=no, scrollbars=no, resizable=yes, height=670, width=1091');
				return false;
			});
	
	jQuery("a.copolate").click(
			function(){					
				window.open(this.href,'makino_official');
				return false;
			});
	
	jQuery(".fade").hover(
			function(){
					$(this).fadeTo(300, 0.001);
			},
			function(){
					$(this).fadeTo(1, 1.0);
			});


});

