// JavaScript Document
j = jQuery.noConflict();
j(function(){


   j('.storycontent a').filter(function(){
        return this.hostname && this.hostname !== location.hostname;
    }).addClass('external_link');
    
	//------------------
	
	j('#search_input').focusin(function(){
			j(this).addClass('active');
		}).focusout(function(){
			j(this).removeClass('active');
			});
			
	//------------------
	function refresh_calendar(){
		j('#calendar').html('<iframe src="https://www.google.com/calendar/embed?mode=WEEK&amp;height=600&amp;wkst=1&amp;hl=ru&amp;bgcolor=%23FFFFFF&amp;src=sakura.kiev.ua_584dtcr5i7pba5q0bk7d24irrg%40group.calendar.google.com&amp;color=%23691426&amp;ctz=Europe%2FKiev" style=" border-width:0 " width="940" height="640" frameborder="0" scrolling="no"></iframe>');
		}

    //----------------------
	
	
	
});

