var t_id = setInterval(animate,20);var pos=0;var dir=2;var len=0;
function animate(){var elem = document.getElementById('progress');if(elem != null) {if (pos==0) len += dir;if (len>32 || pos>79) pos += dir;if (pos>79) len -= dir;if (pos>79 && len==0) pos=0;elem.style.left = pos;elem.style.width = len;}}function remove_loading() {this.clearInterval(t_id);var targelem = document.getElementById('loader_container');targelem.style.display='none';targelem.style.visibility='hidden';var t_id = setInterval(animate,60);}function load_page(url){var fn = function(){box = $('portofolio-box-content');box.removeClass('ajax-loading2');box.setStyle('height', '');};var box = $('portofolio-box-content');box.setStyle('height', box.offsetHeight);box.empty().addClass('ajax-loading2');new Ajax(url, {method: 'get',update: $('portofolio-box-content'),onComplete: fn}).request();}function showPortofolio(url){var fn = function(){box = $('portofolio-view-content');box.removeClass('ajax-loading2');box.setStyle('height', '');};var box = $('portofolio-view-content');box.setStyle('height', box.offsetHeight);box.empty().addClass('ajax-loading2');new Ajax(url, {method: 'get',update: $('portofolio-view-content'),onComplete: fn}).request();}function submit_testimonial(){var fn = function() {var box = $('testi-message');box.removeClass('ajax-loading2');box.setStyle('display', 'block');var fx = new Fx.Style(box, 'background-color', {duration: 800,transition: Fx.Transitions.Quad.easeOut}).start('#fb9393', '#f2f2ff');};var options = {};$('testi-message').empty().addClass('ajax-loading2').setStyle('display', 'block');options['onComplete'] = fn;options['update'] = 'testi-message';$('testimonialform').send(options);}function cal_next_prev(url){new Ajax(url, {method: 'get',update: $('calendar-box'),evalScripts: true}).request();}
