$(document).ready(function(){ 
	$('#divTopRight').css('opacity', 0.5);	
	$("#divTopRight").hover(function(){		
		$(this).fadeTo("slow", 1.0); // This sets the opacity to 100% on hover
	},function(){   		
		$(this).fadeTo("slow", 0.5); // This sets the opacity back to 60% on mouseout	
	});	
	$("tr.trDetailBox").hide();
	$("#divDetailBox").hide();
	
	$("#spanRememberMe").hover(function(){		
		$("#divRememberMe").show(); // This sets the opacity to 100% on hover
	},function(){   		
		$("#divRememberMe").hide(); // This sets the opacity back to 0% on mouseout	
	});		
	$("#spanAutologin").hover(function(){		
		$("#divAutologin").show(); // This sets the opacity to 100% on hover
	},function(){   		
		$("#divAutologin").hide(); // This sets the opacity back to 0% on mouseout	
	});
});
