$(document).ready(function(){
	
	// move contact block to top of page and hide it
	// if js is disabled it will sit nicely at the bottom of the page instead
			$('#contact').css('display','none').insertBefore('#teaser').css('background-color','#75F3FF');

	$('#contact').append('<hr class="clearer" />');
	
	// shower
	$('.contacttrigger').bind('click',function(){
		$('#contact').slideDown('slow');
		return false;
	});
	
	// hider
	$('.contactcancel').bind('click',function(){
		$('#contact').slideUp('slow');
		return false;
	});

});