// JavaScript Document

function initRollOverImages() {
  var image_cache = new Object();
  $("img.swap").each(function(i) {
    var imgsrc = this.src;
    var dot = this.src.lastIndexOf('.');
    var imgsrc_on = this.src.substr(0, dot) + '_on' + this.src.substr(dot, 4);
    image_cache[this.src] = new Image();
    image_cache[this.src].src = imgsrc_on;
    $(this).hover(
      function() { this.src = imgsrc_on; },
      function() { this.src = imgsrc; });
  });
}

$(document).ready(initRollOverImages);



$(function () {
        $('#go_top').click(function () {
            
			$(this).blur();
            
            $('html,body').animate({ scrollTop: 0 }, 'slow');

            return false;
        });
    
});

function openWindow_map(strFName) {
 wPopup = window.open(strFName,'wPopup','scrollbars=0,width=680,height=550,menubar=0,resizable=1,directories=0,toolbar=0,status=0,location=0');
 wPopup.focus();
}

