$(document).ready(function () {
    $("div.preview").click(function(){
    	$(this).removeClass("preview");
    	$(this).load("loadVideoSince.php?id=" + $(this).attr("idFichero"));
    });
});

