/*
jQuery('#n1').accordion({ 
    event: 'mouseover', 
    active: '.selected', 
    selectedClass: 'active', 
    animated: "bounceslide", 
    header: "p" 
}).bind("change.ui-accordion", function(event, ui) { 
    jQuery('<div>' + ui.oldHeader.text() + ' hidden, ' + ui.newHeader.text() + ' shown</div>').appendTo('#log'); 
});*/




  $(".firula2").animate({

    opacity: 1,
    marginLeft: "0.5in",
  }, 1800 );

  $(".firula3").animate({

    opacity: 1,
    marginLeft: "2in",
  }, 1200 );
  
 $(".firula3").animate({
    opacity: 0,
  } );
   $(".firula3").animate({
    opacity: 1,
  } );
   $(".firula3").animate({
    opacity: 0,
  } );
   $(".firula3").animate({
    opacity: 1,
  } );
     $(".firula3").animate({
    opacity: 0,
  } );
   $(".firula3").animate({
    opacity: 1,
  } );
  
 
  
  $(".firula3").click(function(){
  $(".firula3, .firula2").hide(2000);
    $(".lforms").animate({opacity: 1}, "fast");
});





function hideDiv() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('form-indique').style.visibility = 'hidden'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.hideshow.visibility = 'hidden'; 
} 
else { // IE 4 
document.all.hideshow.style.visibility = 'hidden'; 
} 
} 
}

function showDiv() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('form-indique').style.visibility = 'visible'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.hideshow.visibility = 'visible'; 
} 
else { // IE 4 
document.all.hideshow.style.visibility = 'visible'; 
} 
} 
} 


