I find this that seem work:
Re:Nuovo template gratuito, responsive ed originale da @joomfreak
« Risposta #13 il: 08 Lug 2013, 12:36:15 »
Ciao, cosi potrebbe funzionare.
Nel file templates/jf_calla-exteriors/index.php prima della chiusura dell </head> aggiungi il seguente script.
jQuery(function($) {
if(jQuery('#supersized').length){
jQuery('#supersized').css('z-index',1);
jQuery(window).scroll(function() {
if(jQuery(window).scrollTop() > jQuery(window).innerHeight()){
jQuery('#supersized').css('z-index',-999);
}else{
jQuery('#supersized').css('z-index',1);
}
});
}
});
Saluti.