jQuery(document).ready(function() {
    jQuery('.cloud').hover(function() {
	    $(this).parent('div').find('#content-'+this.id).show();
	}, function() {
	    $(this).parent('div').find("div[id^='content-']").hide();
	}
    )
})
