jQuery(document).ready(function(){
jQuery(".work-info").one("click", function(e){
var $this = jQuery(".work-info-bg");
var $this1 = jQuery(".work-info");
e.preventDefault()
$this.css("opacity", "0");
$this1.css("opacity", "0");
});
});
jQuery(".work-info").one("click", function(e){
e.preventDefault()
jQuery('.work-info').addClass('backgroundclick');
var $this = jQuery(this);
$this.toggleClass("backgroundclick");
});