$(function(){
  $.ifixpng("/css/images/pixel.gif");
  $("img").ifixpng();
  if($.ifm){
    $(".rollover").rollover();
    $("#back2top").goTop();
    $.externalLinks();
  }

  $(window).load(function(){
    $.imgRound(".capture");
  });

  $(".pagination").find("li.current").attr("class", "active").wrapInner('<a href="#"></a>').end()
	.find("ul > a").wrap("<li></li>").end()
	.find("li").each(function(){
	  $(this).attr("class",$(this).find("a").attr("class"));
		  $(this).find("a").attr("class","");
	});
  $("#flashMessage").addClass("alert-message block-message error");
});

$.extend({
  // サービス一覧ページのキャプチャー画像の装飾
  imgRound: function(target){
    $(target).wrap(function(){
      return '<span class="' + $(this).attr('class') + '" style="background:url(' + $(this).attr('src') + ') no-repeat center center; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;" />';
    }).css("opacity","0");
  }
});

