var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-11544495-1']);
	_gaq.push(['_trackPageview']);

(function() {
	var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
	ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
	var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
  
window.addEvent('domready', function() {
	bindLightbox();
});

function bindLightbox() {
	$$('a > img').each(function(item, index) {
		var a = item.getParent('a');
		if (a != null) {
			href = item.getParent('a').getProperty('href');
			if ((href.substr(href.length - 4) == '.jpg') || (href.substr(href.length - 4) == '.gif')) {
				a.setProperty('title', item.getProperty('alt'));
				a.slimbox();
			}
		}
	});
}
