// JavaScript Document
<!--
$(document).ready(function() {
	$('.opacity_btn').animate({opacity:"0.5"}, 0);
	
	$(".opacity_btn").mouseenter(function(){
		$(this).stop().animate({opacity:"1"}, 300);
		return false;
	}).mouseleave(function(){
		$(this).stop().animate({opacity:"0.5"}, 300);
		return false;
	}).click(function(){
		//location.href = $($(this).children('a').get(0)).attr('href');
		return false;
	});
	
})
$(window).load(function(){
	
});
