/* 
	All Source Code Copyright 2010, Vrasa
	http://vrasa.com/
	
	If you like what you see, and want to use
	some of this code please email us here: 
	hello [at] vrasa.com and we can discuss 
	pricing and availability.

	Date: Mon July 05 20:36:24 2010 -0600
*/

$(document).ready(function() {
																					//delay
	$.fn.delay = function(time, callback){
    	jQuery.fx.step.delay = function(){};
    	return this.animate({delay:1}, time, callback);
	}
	
	$('#thecomments').click(function(){ 
		$('#extra_extra').slideDown("fast");
		$('#survey').css("height","660px");
		$('#container').css("margin-top", "-1801px");
	});
	
	$('.footer_story').click(function(){
		$('#survey').fadeTo("fast", 0.4);
		$('#survey').delay(10).fadeTo(300, 1.0);
	});
		
});
