$(document).ready(function(){
	$("#expt-link:first").click(function() {
				$(this).css("background","#60965A").css("color","#ffffff");
                $("#expt").show();
                return false;
            });
	$(document).click(function(e){
    if ($(e.target).parents().attr('id') != "expt") {
		$("#expt-link").css("background","").css("color","");
        $('#expt').hide();
    }
	});
	
});
