$(document).ready(function(){
	$("#back1").animate({ opacity: 0.8 }, 1000);
});

$(document).ready(function(){
$("#bg1").mouseover(function(event){
event.preventDefault();
	$("#back1").animate({ opacity: 0.8 }, 1000);
	$("#back2").animate({ opacity: 0 }, 1000);
	$("#back3").animate({ opacity: 0 }, 1000);
	});
});

$(document).ready(function(){
$("#bg2").mouseover(function(event){
event.preventDefault();
	$("#back2").animate({ opacity: 0.8 }, 1000);
	$("#back1").animate({ opacity: 0 }, 1000);
	$("#back3").animate({ opacity: 0 }, 1000);

	});
});

$(document).ready(function(){
$("#bg3").mouseover(function(event){
event.preventDefault();
	$("#back3").animate({ opacity: 0.8 }, 1000);
	$("#back1").animate({ opacity: 0 }, 1000);
	$("#back2").animate({ opacity: 0 }, 1000);
	
	});
});

