////////////////////////////////////
var box = $("#blackbox");
// If this condtion is true // then apply this background //Else Apply this background
box.css('background') == 'pink' ? box.css({'background':'black'}) : box.css({'background':'pink'});
////////////////////////////////////