<!-- Header -->
$(function(){
         $('#HeaderNaviG a,#HeaderNaviS a,#HeaderNaviH a').hover(function(){
		         $(this).stop().animate({'opacity' : '0'}, 500);
		 }, function(){$(this).stop().animate({'opacity' : '1'}, 500);});
});

<!-- MenuListWrapper -->
$(document).ready(function(){
    $('.rollover a img').hover(
        function() {
            $(this).stop().animate({"opacity":0}, 200);
        },
        function() {
            $(this).stop().animate({"opacity":1}, 400);
        }
    );
});

<!-- IndexLeftNavi -->
$(function() {
  $("#LeftNavi a img")
  .hover(
    function() {
      $(this).stop().fadeTo(200, 0);
    },
    function() {
      $(this).stop().fadeTo(500, 1.0);
    }
  );
});

<!-- Solution DivLink-->
$(document).ready(function() {
	var linkboxes = $(".content,#content_enter");
		for (var i=0; i<linkboxes.length; i++){
		var readmores = $("h4.pngfix a");
		for (var j=0; j<readmores.length; j++){
			$(".content,#content_enter").click(function() {
				var anchorTags = this.getElementsByTagName("a");
				window.location = anchorTags[0].href;
			});
		}
	}
	$("h4.pngfix a").addClass("none"); 
	$(".content,#content_enter").hover(function(){
		$(this).addClass("box_hover"); 
		},
		function(){
		$(this).removeClass("box_hover"); 
	});
}); 
-->

