$(document).ready(function(){	
	$('#moretext p').fadeTo(100,0.01);	
	$('#readmore').toggle(function() {
	  	$(this).parents("#lefttext").find("#moretext").animate({"height":"toggle"}, {queue:false,duration:600});
		$(this).parents("#lefttext").find("#moretext p").fadeTo(800,1);
		$(this).text('read less');	
	}, function() {
		$(this).parents("#lefttext").find("#moretext p").fadeTo(800,0.01);
	  	$(this).parents("#lefttext").find("#moretext").animate({"height":"toggle"}, {queue:false,duration:600});
		$(this).text('read more');
	});
	
	$('#downloadform h4').fadeTo(100,0.01);	
	$('#downloadform div').fadeTo(100,0.01);	
	$('#downloadbutton').toggle(function() {
	  	$(this).parents("#downloadcontainerright").find("#downloadform").animate({"height":"toggle"}, {queue:false,duration:600});
		$(this).parents("#downloadcontainerright").find("#downloadform h4,div").fadeTo(800,1);
	}, function() {
		$(this).parents("#downloadcontainerright").find("#downloadform h4,div").fadeTo(800,0.01);
	  	$(this).parents("#downloadcontainerright").find("#downloadform").animate({"height":"toggle"}, {queue:false,duration:600});
	});
});