Can not see EDIT Buton

Permalink
Hi,
In my new custom theme i could not see the EDIT button. I have the below JS right before the closing body tags. And i inserted the "footer required" link after this JS.

If i remove the JS, i can see the EDIT buton. But i need to use this JS as well..

<script type="text/javascript">

var tpj=jQuery;
tpj.noConflict();

tpj(document).ready(function() {

if (tpj.fn.cssOriginal!=undefined)
tpj.fn.css = tpj.fn.cssOriginal;

tpj('.fullwidthbanner').revolution(
{
delay:9000,
startwidth:890,
startheight:450,

onHoverStop:"on", // Stop Banner Timet at Hover on Slide on/off

thumbWidth:100, // Thumb With and Height and Amount (only if navigation Tyope set to thumb !)
thumbHeight:50,
thumbAmount:3,

hideThumbs:200,
navigationType:"both", //bullet, thumb, none, both (No Shadow in Fullwidth Version !)
navigationArrows:"verticalcentered", //nexttobullets, verticalcentered, none
navigationStyle:"round", //round,square,navbar

touchenabled:"on", // Enable Swipe Function : on/off

navOffsetHorizontal:0,
navOffsetVertical:20,

fullWidth:"on",

shadow:0 //0 = no Shadow, 1,2,3 = 3 Different Art of Shadows - (No Shadow in Fullwidth Version !)

});



jQuery(".language li").first().addClass('none');
//$(".navigation ul li a").last().addClass('none'); //for menu
jQuery(".navigation ul li").first().addClass('none');

});

</script>