var lengthOfPreloadBar = 150
var heightOfPreloadBar = 15

$(function(){$('a').click(function(){this.blur();});});
$(function(){$('a').focus(function(){this.blur();});});

$(document).ready(function() {
$(".transp").wrapInner('<div>').children().addClass("content");
$(".transp .content").before('<div>').prev().addClass("transparency");
});

$(document).ready(function() {   
  
$("#panel").hide();   
  
var a = $("<a>toggle header</a>").attr('href','#').addClass("btn-slide");   
  
 $('#wrapper').before(a);   
  
$(".btn-slide").click(function(){   
  
if ($("#panel").is(":hidden")) {   
  
        $("#panel").slideDown("slow"); 
        document.getElementById('rasta1').style.color='#ADDFF6';
  
 $(this).addClass("active");   
  
         $.cookie('showTop', 'collapsed');   
  
 return false;   
  
} else {   
  
        $("#panel").slideUp("slow"); 
        document.getElementById('rasta1').style.color='#184064';
  
 $(this).removeClass("active");   
  
        $.cookie('showTop', 'expanded');   
  
 return false;   
  
}   
  
});   
  
  
    var showTop = $.cookie('showTop');   
    if (showTop == 'collapsed') {   
  
 $("#panel").show();   
 document.getElementById('rasta1').style.color='#ADDFF6';
 
 $(".btn-slide").addClass("active");   
  
};   
 
document.getElementById('bongs').style.display='';
 
});


 $(function() {
       $("#1").lavaLamp({
             fx: "backout",
             speed: 700,
             click: function(event, menuItem) {
                }
            });
        });