


jQuery(document).ready(function($) {

	$("a.thickbox").fancybox({
		'zoomOpacity':		true,
		'overlayOpacity':	.7
	});
	
	$('textarea#comment').focus( function(){
		if ( $(this).val() == "don't be bashful"  ){
			$(this).val("");
		}
	});
	

		
	
	var pos = $('.back_button').position();
	$('.back_button').hover( 
		function(){
			$(this).stop();
			$(this).animate({'top':pos.top-5},100);
		},
		function(){
			$(this).animate({'top':pos.top},100);
		}
	);
	
	
	
	
});
