$(document).ready(function() {

	$("#form").hide();
	$("a.tellme2").hide();
	
	$("a.tellme").click(function() {
	  $("#form").show();
		$(this).hide();
		$("a.tellme2").show();
	});
	
	$("a.tellme2").click(function() {
	  $("#form").hide();
		$(this).hide();
		$("a.tellme").show();
	});
	
	$('#logo').pngFix();
	   
});
