$(document).ready(function() {
  $("#top ul > li").hover(function () {
      $(this).addClass("hover");
  },function () {
      $(this).removeClass("hover");
  })    
  
  //$.backstretch("images/bg-body.jpg");

	// Load the classic theme
	//Galleria.loadTheme('js/galleria/src/themes/classic/galleria.classic.js');

	// Initialize Galleria
	//setTimeout("$('.galleria').galleria()", ($.browser.msie) ? 1000 : 0)
});


