$(document).ready(function() {
	$('.menu').mouseenter(function(){
		$('.submenu').show('fast', function() {
			// Animation complete.
		});
	});
	$('.submenu').mouseleave(function(){
		$(this).hide('fast', function() {
			// Animation complete.
		});
	});
	$.superbox.settings = {
		closeTxt: "",
		loadTxt: "Loading...",
		nextTxt: "Next",
		prevTxt: "Previous"
	};
	$.superbox();
});
