	jQuery(document).ready(function() {

	
		jQuery('#homeevents ul.bghover li').hover(function() {
			jQuery(this).addClass('backgroundhover');
		}, function() {
			jQuery(this).removeClass('backgroundhover');
		});

		function returnToTop () {
		jQuery('html, body').animate({scrollTop:0}, 'slow'); 
		}		
		
		jQuery(document).bind("contextmenu",function(e){  
			//return false;  
		});
	
		
	});

