$(window).scroll( function(){
if( $(window).scrollTop() > ucity_prop.pos.top){
$('.ucity').css({
'position':'fixed',
'left': ucity_prop.pos.left + 'px',
'top': '0px',
'width': ucity_prop.width + 'px'
});
} else {
$('.ucity').css({
'display':'block',
'position':'absolute',
'left':'',
'top':'130%',
'width': '25%'
});
}
});