$(document).ready(function()
{	
	
	$.fn.superbgimage.options = {
		slideshow: 1, // 0-none, 1-autostart slideshow
		slide_interval: 10000, // interval for the slideshow
		randomimage: 0, // 0-none, 1-random image
		speed: 'slow' // animation speed
	};

	$("#background").superbgimage().hide();
	
	$('#navigation li').hover(function(event) {
		$(this).addClass('hover');
	}, function(event) {
		$(this).removeClass('hover');
	});
	
}
);
