function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

$(document).ready( function(){
  $('.rounded').corners('3px');
  equalHeight($(".stores-list li"));
	$("a.gmaps").fancybox({
		'frameWidth': 640, //frameWidth = Default width for iframed and inline content  
		'frameHeight': 480 //frameHeight = Default height for iframed and inline content  
	});
	
	//for table row
	$("tr:even").css("background-color", "#f0f0f0");
	$("tr:odd").css("background-color", "#ffffff");
});

/* Google Analytics Code */
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

try {
var pageTracker = _gat._getTracker("UA-2388646-9");
pageTracker._setDomainName(".drinhint.com");
pageTracker._trackPageview();
} catch(err) {}