$(document).ready(function(){
function disableScroll() {
return false;
}
$('.scroll-fix-content').mouseover(function(){
$(document).unbind('keydown DOMMouseScroll mousewheel', disableScroll);
});
$('.scroll-fix-content').mouseout(function(){
$(document).bind('keydown DOMMouseScroll mousewheel', disableScroll);
});
});