jQuery(function($) {
function fixDiv() {
var $cache = $('#cont');
if ($(window).scrollTop() >= $(window).height())
$cache.css({
'position' : 'fixed',
'top': 'auto',
'bottom': 0,
'left': 595,
'-webkit-transform' : 'translateZ(0)',
});
else
$cache.css({
'position' : 'absolute',
'top' : 0,
'bottom' : 'auto',
'left': 482,
});
}
$(window).scroll(fixDiv);
fixDiv();
});