$(function(){
	$("a img, .fadeImg, #gNavi a, #sideMenu a, input[type=image]").hover(
		function(){
			$(this).fadeTo(200, 0.6);
		},
		function(){
			$(this).fadeTo(200, 1.0);
		}
	);

//jQuery Corner(SideMenu)
	$("#sideMenu dl,#sideMenu dl dd").corner("5px");
	
	//accordion(SideMenu)
	$(".acc").each(function(){ 
    $("a.open", this).each(function(index){
      var $this = $(this);
			if(typeof(openAcoMenu) == 'undefined' || $this.attr("href") != openAcoMenu){
				$this.next().hide();
			}
      $this.click(function(){ 
        var params = {height:"toggle", opacity:"toggle"}; 
        $(this).next().animate(params).parent().siblings() 
          .children("ul:visible").animate(params);  
      }); 
    }); 
  });
});

