// JavaScript Document
$(function(){
	$(".fade,#join img,#sideInfoH3 a img,#loginHdr a img,#seminar .pagetop a img,#bxMainGeneral a img").hover(
		function(){
			$(this).fadeTo(10, 0.8);
		},
		function(){
			$(this).fadeTo(100, 1.0);
		}
	);
	$("#sideBnrs li a img,.thBtn,#bxPanelD a img,.pagetop a img").hover(
		function(){
			$(this).fadeTo(150, 0.6);
		},
		function(){
			$(this).fadeTo(150, 1.0);
		}
	);

});

