$(document).ready(function(){
	$('ul#main-menu li:not(.current_page_item)').hover(
      function () {
        $(this).addClass('current_page_item');
      }, 
      function () {
      	$(this).removeClass('current_page_item');
      }
    );
	$('#title-background').fadeTo(0,0.75);
	$('.container div.ngg-album-compact').hover(
      function () {
        $(this).addClass('ngg-album-compact-hover');
      }, 
      function () {
      	$(this).removeClass('ngg-album-compact-hover');
      }
    );
})
