.navigation .short-menu {
background-color:#E79801;
height:25px;
}
.navigation .branding-section {
background-color:#3E7ADB;
height:100px;
-o-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.main-nav {
background-color:#5F5C5C;
height:40px;
}
$(document).ready(function() {
// calculat the height of navbar and applys to target div.
var heightNave = $(".navigation").height();
$('section').css('padding-top', heightNave+'px');
//windows scroll function and get windows size
$(window).scroll(function(){
var windowsize = $(window).width();
if ($(window).scrollTop() >= 1) {
$('.navigation .short-menu').slideUp('fast');
$('.navigation .branding-section').css({
'height':'70px'
});
} else {
$('.navigation .short-menu').slideDown('fast');
$('.navigation .branding-section').css({
'height':'100px'
});
}
});
});