$(document).ready(function(){
	$('a').removeAttr('title');

	$('#lavaLampBorderOnly').lavaLamp({ fx: "backout", speed: 700 });	

	$('#slideshow').cycle({ 
		fx:     'fade', 
		speed:   3000, 
		timeout: 5000
	 });
	
	$('#slideshow img').removeAttr('title');
	
	$('#subMenu li').hover(function() {
		$(this).addClass('hover');
	},function() {
		$(this).removeClass('hover');
	});
	
}); //Close document.ready

$(window).bind("load", function() {
    //-----------  Preload images for slideshows
	$('#loading').hide();
	$('#slideshowWrapper').fadeIn('slow');
});