$(function(){
			//hide things before manipulation
				$('#darken').hide()
				
			
				//show quote contaioner
				$('a.freequote').click(function(){	
				
						$('#darken').fadeIn(300);
						$('#quote_container').show();
						$('#quote_container').stop().animate({
							"top" : "0px"	
						});
					
					});
				
				
				//hide quote container
				$('a.window_close').click(function(){
					
					$('#darken').fadeOut(500);
					$('#quote_container').stop().animate({
							"top" : "-295px"
						},200);
					});
		});	
