var $wrHeight = $('.footer').offset().top;
var $totalrHeight = $wrHeight-100;
$(window).scroll(function () {
if ($(this).scrollTop() > 1050) {
$('#to-top').fadeIn();
} else {
$('#to-top').fadeOut();
}
if($(this).scrollTop() > $totalrHeight){
$('.to-top').addClass('color');
}
else{
$('.to-top').removeClass('color');
}
});
$('.menu li').hover(function(){
$(this).find('.submenu:first').show();
},function(){
$(this).find('.submenu:first').hide();
});