$(function(){
  //ifixpng
  $('img[@src$=.png]').ifixpng(); 
	$.ifixpng('images/pixel.gif'); 
  $('#footer-content, #bubble').ifixpng();
  //tipsy
  $('.tip').tipsy();
  //changeheader
  changeHeader("#switch01","images/index01.jpg");
  changeHeader("#switch02","images/index02.jpg");
  changeHeader("#switch03","images/index03.jpg");
  changeHeader("#switch04","images/index04.jpg");
  changeHeader("#switch05","images/index05.jpg");
  changeHeader("#switch06","images/index06.jpg");
  changeHeader("#switch07","images/index07.jpg");
  changeHeader("#switch08","images/index08.jpg");
  
  function changeHeader(Id,LargePath){
    $(Id).mouseover(function(){
      $("h1 img")
      .attr({ src: LargePath});
      return false;
    });
  };
  //externalLink
  $(function(){
	  var conf = {
		  className : 'externalLink'
	  };
	  $('a[@href^="http://"]').click(function(){
		  window.open(this.href, "_blank");
		  return false;
	  }).addClass(conf.className);
  });
});
