$(document).ready(function(){
      
      $("#slider").easySlider({
      	continuous: true,
      	auto: true, 
         pause: 10000,
      	controlsShow:	false
      });
      
		$('body').pngFix();
   
      var cont_height = $('#cont').height();
      var body_height = $('body').height();
      body_height = body_height - $('#footer').height() - 20;
      if (body_height > cont_height) {
         $('#footer').css({position: 'absolute', bottom: 0})   
      }
      
      $('.gallery a').mouseover(function(){
         $(this).parent().find('img').css({'opacity': '1'});
         $(this).parent().find('a').css({'text-decoration': 'underline'});
      });
      
      $('.gallery a').mouseout(function(){
         $(this).parent().find('img').css({'opacity': '0.4'});
         $(this).parent().find('a').css({'text-decoration': 'none'});
      });
      
      transparent_background();
      
      $('body').mouseover(function(){
         transparent_background();   
      });
      
   });
   
   
function transparent_background(){
   $('.transparent_background').each(function(){
         $(this).parent().css({position: 'relative'});
         var height =  $(this).parent().height();
         $(this).css({height: height});
      });
}
