/* Antispam */
jQuery(function() {  
   jQuery('.email').each(function() {  
      var $email = jQuery(this);  
      var address = $email.text()  
         .replace(/\s*\[at\]\s*/, '@')  
         .replace(/\s*\[dot\]\s*/g, '.');  
      $email.html('<a href="mailto:' + address + '">'  
         + address +'</a>');  
   });  
});

/* Rollovers */
jQuery(function() {
	jQuery('.rollover').hover(function() {
		var currentImg = jQuery(this).attr('src');
		jQuery(this).attr('src', jQuery(this).attr('hover'));
		jQuery(this).attr('hover', currentImg);
	}, function() {
		var currentImg = jQuery(this).attr('src');
		jQuery(this).attr('src', jQuery(this).attr('hover'));
		jQuery(this).attr('hover', currentImg);
	});
});

/* Show/Hide tariff details */
function showDetails(blockID) {
	if(document.getElementById(blockID).style.display == "none") {
		document.getElementById(blockID).style.display = "table";
		document.getElementById(blockID+"Btn").src = "/images/toggler_minus.gif";
	} else {
		document.getElementById(blockID).style.display = "none";
		document.getElementById(blockID+"Btn").src = "/images/toggler_plus.gif";
	}
}