/* sample01
======================================== */
jQuery(document).ready(function($){
	var nav = $('.overimg');
	nav.hover(
		function(){
			$(this).fadeTo(100,0.6);
		},
		function () {
			$(this).fadeTo(100,1);
		}
	);
});
