$(document).ready(function() { 
//Activate ipngFix if IE6
	if ($.browser.msie && $.browser.version=="6.0") {
		$.ifixpng('/src="/img/pixel.gif');
		$('#logo h1').ifixpng();
		$('#header').ifixpng();
		$('#benefits').ifixpng();
	}
	
	/*Convert spam-safe email addresses*/
	$('a.antispam').each(function(){
		if(this.rel.length >1) {
			e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
		$(this).attr('title','Email '+e);
		} 
	})
});