$(document).ready(function() {
   $("h2 a").hover(function() {
       $(this).addClass('hover');
   }, function() {
       $(this).removeClass('hover');
   });
   
   $("a.product").click(function() {
       // if ( typeof google != 'undefined' ) {
       //            var strCountry     = google.loader.ClientLocation.address.country_code;
       //        } else {
       //            alert('You need to add the following code to your <head> section:\n<script src="http://www.google.com/jsapi" language="javascript"></script>');
       //            return;
       //        }
       //        
       //        $(this).attr('href',$(this).attr('href')+'/'+strCountry);
       _gaq.push(['_trackPageview', $(this).attr('href')]);
       return true;
   });
});
