$('.color-gl').mouseenter(function(event) {
$('.color-tah').fadeOut(300);
$('.grey-tah').fadeIn(300);
$('.color-dop').fadeOut(300);
$('.grey-dop').fadeIn(300);
$('.color-med').fadeOut(300);
$('.grey-med').fadeIn(300);
}).mouseleave(function(event) {
$('.color-tah').fadeIn(300);
$('.grey-tah').fadeOut(300);
$('.color-dop').fadeIn(300);
$('.grey-dop').fadeOut(300);
$('.color-med').fadeIn(300);
$('.grey-med').fadeOut(300);
});
var isLineHeight = 0;
$('div.line').each(function(){
if ($(this).height() > isLineHeight ) {
isLineHeight = $(this).height();
}
});
$('div.line').height(isLineHeight );
.header.hide{top: -158px; transition: top .15s ease-in-out;}
.header {background: #fff; border-bottom: 1px solid #eee; position: absolute; z-index: 100; top: 0; left: 0; right: 0;}
$(window).scroll(function () {
if ($(this).scrollTop() > 75) {
$('.header').addClass('hide');
return false;
} else if ($(this).scrollTop() < 158) {
$('.header').removeClass('hide');
return false;
}
});
if ($(window).scrollTop() > 75) {
$('.header').addClass('hide');
return false;
}