
$(document).ready(function()
{
	$('.pagecontent').jScrollPane();
	$('.newslist').jScrollPane();
	$('#logo').fadeIn(1000);
	$('#menu').fadeIn(2000);
});
function opennews() {
	$('#volver').show(300);
	$('#elnews').slideUp(500,
		function () {$('#thenews').slideDown(500);}
	);
}
function closenews() {
	$('#volver').hide(300);
	$('#thenews').slideUp(500,
		function () {$('#elnews').slideDown(500);}
	);
}
function openciviles() {
  $('#logo').animate({
    left: '35',
    top: '55',
  }, 500, function() {
    // Animation complete.
  })
  $('#menu').animate({
    left: '260',
    top: '40',
  }, 500, function() {
    // Animation complete.
    	 $('#stage').animate({
			top:'30px'
		}, 500
	  );
	   $('#containerofstage').animate(
	  	{
			top:'120px'
		}, 500
	  );
	  $('#navigation').fadeIn('slow');
	  $('#civiles').fadeIn(500);
	  $('#gobierno').fadeOut(500);
	  $('#menuciviles').fadeIn(500);
	  $('#menugobierno').fadeOut(500);
	  
	  

  })
  
};
function opengobierno() {
  $('#logo').animate({
    left: '35',
    top: '55',
  }, 500, function() {
    // Animation complete.
  })
  $('#menu').animate({
    left: '260',
    top: '40',
  }, 500, function() {
    // Animation complete.
    	
	  $('#stage').animate(
	  	{
			top:'30px'
		}, 500
	  );
	  $('#containerofstage').animate(
	  	{
			top:'120px'
		}, 500
	  );
	  $('#navigation').fadeIn('slow');
	  $('#gobierno').fadeIn(500);
	  $('#menugobierno').fadeIn(500);
	  $('#civiles').fadeOut(500);
	  $('#menuciviles').fadeOut(500);

  })
  
};

