// JavaScript Document
$(document).ready(function(){

	// email anti-spam
	$('span.snd_eml').each(function(i){
		var c = $(this).text().split(' (0) ').join('@');
		var t = $(this).attr('title');
		if (t)	$(this).replaceWith('<a href="mailto:' + c + '">' + t + '</a>');
		else 	$(this).replaceWith('<a href="mailto:' + c + '">' + c + '</a>');
	});
	
	$('#content .infoblock a.showinfo').click(function(){
    var parent = $(this).parent();
    parent.children('div.hidden').slideDown();
    $(this).hide();
    parent.children('a.closeinfo').show();
    return false;
	});
	
	$('#content .infoblock a.closeinfo').click(function(){
    if ($(this).css('display') != 'none') {
      var parent = $(this).parent();
      parent.children('div.hidden').slideUp();
      $(this).hide();
      parent.children('a.showinfo').show();
    }
    return false;
	});
	
});