$(document).ready(function(){
	$('#header').css('opacity' , '0.7');
	$('#first-hidden').css('display' , 'none');
	$('#second-hidden').css('display' , 'none');	
});
$(function(){
	$("#first-more").click(function () {
	      $("#first-hidden").fadeIn("slow");
		  $('#first-more').css('display' , 'none');
	 });
});
$(function(){
	 $("#second-more").click(function () {
	      $("#second-hidden").fadeIn("slow");
		  $('#second-more').css('display' , 'none');
	 });
});	

