$(document).ready(function() {
	
    $(".top-line-link-hover").hover(
		function() {
			$(".top-line-block").animate({ top: "0" }, 150);
			$(".top-line-link-hover").animate({ top: "100px" }, 150);
			$(".top-line").animate({ height: "132px" }, 150);
			$(".hover-class").addClass("hover-class2");
		}, function() {
			
	});
	
	$(".top-line").mouseleave(
		function() {
			$(".top-line-block").animate({ top: "-100px" }, 100);
			$(".top-line-link-hover").animate({ top: "0px" }, 100);
			$(".top-line").animate({ height: "32px" }, 100);
			
		}, function() {
			
	});
	
	$('.top-video-block').hover(
        function() {
            $(this).addClass("top-video-block-active");
			
        },
        function() {
            $(this).removeClass("top-video-block-active");
            
        }
    );
	
});

