jquery over https

jquery over https

I have a site that his working perfectly over http, I have moved it onto our test environment to test over https, am now getting problems with jquery not working.
 
I am not doing anyting complicated.
 
For example

function

ShowSubmitDiv() {

setSize();

ileft=Math.floor(($(

'#hdnWidth' ).val() - 164)/2) + 'px' ;

itop=Math.floor(($(

'#hdnHeight' ).val() - 164)/2) + 'px' ;

$(

'#DivPageSubmit' ).css( 'left' ,ileft);

$(

'#DivPageSubmit' ).css( 'top' ,itop);

$(

'#DivPageSubmit' ).bgiframe({opacity: false });

$(

'#DivPageSubmit' ).show( 'fast' );

}
 
is not working.
 
The is also an alteon server that might be causing the problem.
 
Can anyone help?
 
Darren