I dont know much about JB here is how it should be
First decompile SystemUI.apk with your favorite tool (apktool ,etc )
open /res/values/ there should a file drawables.xml
find
<item type="drawable" name="status_bar_background">#ff000000</item>
replace all the "f" by "0"
so it should be like
<item type="drawable" name="status_bar_background">#00000000</item>
Tip:
#00000000 - 100% transparency
#3F000000 - 75% transparency
#7F000000 - 50% transparency
#BF000000 - 25% transparency
Let me know if it works
Edited by acer-, 08 February 2013 - 02:57 PM.