// bluegalah.com.au
$(document).ready(function() {

 // F O O T E R  T O O L T I P S  / K E Y W O R D S
  $('a.jttkw').hover(function() {
   $('#ttkw').slideToggle('slow');
   return false;
  });
  $("a.jttkw").mouseout(function(){
   $('#ttkw').slideUp('fast');
   return false;			 
  });

 // C O L O R B O X  P H O T O  G A L L E R I E S
  $(".ga11ery").colorbox({
   opacity:0.7, current:'{current}/{total}',
   slideshow:true, slideshowSpeed:2500, slideshowStart:'play', slideshowStop:'pause' 	
  });
  $(".showcase").colorbox({
   opacity:0.7, current:'{current}/{total}', loop:false
  });

 // S T I C K Y  E L E M E N T S
   var msie6 = $.browser == 'msie' && $.browser.version < 7;
   if (!msie6) {
      var top = $('#sticker').offset().top - parseFloat($('#sticker').css('margin-top').replace(/auto/, 0));
      $(window).scroll(function (event) {
        var y = $(this).scrollTop();
        if (y >= top) {
          $('#sticker').addClass('fixed');
          $('.top').addClass('hidden');
        } else {
          $('#sticker').removeClass('fixed');
          $('.top').removeClass('hidden');
        }
      });
   }

});
