$(document).ready(function(){
	$(function() { 
		$(".hnavi a, .pagetop a, .txt_size a, #side a img, #footer a img, .sbox a img, .mvimg a img, .moviesw a img").hover(
			function () {
				$(this).stop().animate({opacity: 0.6}, 'fast');},
			function () {
				$(this).stop().animate({opacity: 1}, 'fast');}
		);
		$(".sample").hover(
			function () {
				$(this).stop().animate({opacity: 0}, 'fast');},
			function () {
				$(this).stop().animate({opacity: 1}, 'fast');}
		);
		$(".current a").css("opacity","0");
		$(".current a").hover(
			function () {
				$(this).stop().animate({opacity: 0}, 'fast');},
			function () {
				$(this).stop().animate({opacity: 0}, 'fast');}
		);
	});
});
