// JavaScript Document	
$(function(){

$(document).pngFix();

	//alpha
	$(".alpha").opOver(1.0,0.8,100,100);
	$(".alpha60").opOver(1.0,0.6,100,100);
	
	//btn_newlist
	$(".btn_newlist").hover(function(){
		$(this).animate({marginTop:"29px"}, 100);
	},function(){
		$(this).animate({marginTop:"30px"}, 200);
	});


/*
	//accordion	
	$(".switch_c, .switch_t").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("#commentView, #trackView").css("display","none");
	$(".switch_c, .switch_t").click(function(){
		$(this).next().slideToggle("slow");
	});
*/

});


