var common = function() {
  var that = {
  };
  return that;
};

var commonObj = new common();
jQuery(document).ready(function() {
  // jQuery('#to_gmap').bind('click', function() {
  //   window.open(jQuery(this).attr('href'));
  //   return false;
  // });
  jQuery('#blog_link').bind('click', function() {
    window.open(jQuery(this).attr('href'));
    return false;
  });
  jQuery('a img').each(function(i) {
    var elem = jQuery(this);
    elem.bind('mouseover', function() { elem.css({ opacity: 0.7 }); });
    elem.bind('mouseout', function() { elem.css({ opacity: 1 }); });
  });
});

