$(document).ready(function(){ var totalNum = 4; $('#bckover').animate({opacity: .8 }); $('.twitter').animate({opacity: .85 }); $('.twitter').hover(function(){  $(this).animate({opacity: '1'},{duration: 150, easing: 'easeOutSine'}) },function(){  $(this).animate({opacity: '.8'},{duration: 200, easing: 'easeInSine'}) }); var rndNum = Math.floor(Math.random() * totalNum); $("#bck").css("background-image","url(/wp-content/themes/utah_martial_arts_2009/assets/images/bg" + rndNum + ".jpg)"); $('#bckhide').pause(0).animate({opacity: 0 },{queue:true, duration:800, easing: 'easeOutQuint'}); $('.archive').hide(); $('.archiveBtn').click(function(){  $('.archive').toggle('fast'); return false; }); $('#commentform').hide(); $('#respondBtn').click(function(){  $('#commentform').toggle('fast'); return false; }); $('#header').find('li:not(:last)').append(' <span>/</span> '); $('#footer').find('li:not(:last)').append(' <span>/</span> '); }); 
