$(document).ready(function() {

	$('a.email').each(function() {
		var link = $(this);
		var email = $(this).html().replace(" at ", "@").replace(" dot ", ".").replace(" ", "");
		link.html(email);
		link.attr('href', 'mailto:'+email);
	});
	
	$('img.thumb').click(function() {
		$.modal('<img src="'+$(this).attr('src').replace('_thumb', '')+'" class="simplemodal-close">');
		return false;
	});
	
	$('#logo a').click(function() {
		window.location = "/";
		return false; 
	});
	
	$('#show_pricelist').click(function(event) {
		$('#hosting-pricelist').animate({opacity:'toggle', height:'toggle'});
		event.preventDefault();
	});
	
})


