In this code :
$("div#info_holder").css("marginLeft", "100%");
alert(parseFloat($("#info_holder").css("marginLeft")));
alert(parseFloat(document.getElementById("info_holder").style.marginLeft));
the first alert returns 1037.78, the second alert returns 100
why is that?!