$(function () { function resize_section_aside() { var section = $('#maincontent'), aside = $('#rightcol'), section_height = section.height(), aside_height = aside.height(); console.log("section_height "+section_height) console.log("aside_height "+aside_height) if(section_height>aside_height){ aside.css({"height":section_height} ); } return true } $('.premtrackmain').mediaelementplayer({ audioWidth:200, features: ['playpause','progress','volume'] }); /*$( "#indexnews, #charts" ).tabs({ beforeLoad: function( event, ui ) { ui.jqXHR.error(function() { ui.panel.html("Error!" ); }); }, load: function( event, ui ) { resize_section_aside(); } });*/ $("#indexnews,#charts").tabs({ beforeLoad: function( event, ui ) { ui.jqXHR.error(function() { ui.panel.html("Error!" ); }); }, load: function( event, ui ) { resize_section_aside(); } }); $.datepicker.regional['uk'] = { closeText: 'Закрити', prevText: '<', nextText: '>', currentText: 'Сьогодні', monthNames: ['Січень','Лютий','Березень','Квітень','Травень','Червень', 'Липень','Серпень','Вересень','Жовтень','Листопад','Грудень'], monthNamesShort: ['Січ','Лют','Бер','Кві','Тра','Чер', 'Лип','Сер','Вер','Жов','Лис','Гру'], dayNames: ['неділя','понеділок','вівторок','середа','четвер','п’ятниця','субота'], dayNamesShort: ['нед','пнд','вів','срд','чтв','птн','сбт'], dayNamesMin: ['Нд','Пн','Вт','Ср','Чт','Пт','Сб'], weekHeader: 'Тиж', dateFormat: 'dd/mm/yy', firstDay: 1, isRTL: false, showMonthAfterYear: false, yearSuffix: ''}; $.datepicker.setDefaults($.datepicker.regional['uk']); /* $( "#datepicker" ).datepicker({ changeMonth: true, changeYear: true, onSelect: function(date, instance) { $.ajax({ type: "POST", url: "/lib/getnews.php", data: "date="+date, beforeSend: function() { $('#vpb_pagination_system_displayer').html('

'); }, success: function(response) { $("#vpb_pagination_system_displayer_allcont").fadeIn(2000).html(response); } }); } });*/ /*$('#hnrc a').click(function(){ alert("Loading..."); return false; })*/ $('#main').css("opacity",1); $('#preloader').fadeOut('slow',function(){$(this).remove();}); $("#all,footer").animate({ opacity: "1" }, "slow"); resize_section_aside(); //link to top $('#link-top').on('click',function(){ $('html,body').animate ({scrollTop: 0},500); return false; }); window.onscroll = function() { var scrolled = window.pageYOffset || document.documentElement.scrollTop; var style = $('#link-top').css("display"); if(scrolled>200){ //if( $('#link-top').css("display")== ) if(style == 'none'){ $('#link-top').fadeIn("slow"); } }else{ //alert(style); if(style == 'block'){ $('#link-top').fadeOut("slow"); } } //document.getElementById('showScroll').innerHTML = scrolled + 'px'; } });