$(document).ready(function(){
    $('.box').hover(
      function () {
        $('img',this).css('opacity', '1.0');
      }, 
      function () {
        $('img',this).css('opacity', '0.3');
      }
    );
    
    $('#foot_logo').hover(
      function () {
        $(this).css('opacity', '1.0');
      }, 
      function () {
        $(this).css('opacity', '0.18');
      }
    );
    
    $('#fader').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '241px'
	});
	
	$('#gallery a').lightBox();
});
