$(document).ready(function(){
$(".text2").click(function(){
$(".text1").toggle();
.text1{
display: none;
}
$(document).ready(function(){
$(".text2").click(function(){
$(".text1").css({ "background-color": "#f00"});
});
});