$(function() {
if ($('.menu').length > 0) {
$('.menu').css('z-index', 9);
var menu = $('.menu').offset().top;
$(window).scroll(function() {
if ($(this).scrollTop() > menu) {
if ($('.menu').css('position') != 'fixed') {
$('.menu').css({
'position': 'fixed',
'top': '0px'
});
}
} else {
if ($('.menu').css('position') != 'static') {
$('.menu').css({
'position': 'static'
});
}
}
});
}
});