$(function(){
	$('.arrow_bg a').each(function(){
		if($(this).height() > 32){
			$(this).parent().removeClass().addClass('arrow_bg_large');
		}

		}
	);
	
	$('#sidebar li.active').addClass("old").clone().prependTo('#sidebar ul').removeClass('old').addClass("new");
	$('#sidebar li.old').remove();
	
	$('article .teaser').each(function(){
		if($(this).height() < 149){
			//ReadmoreとかぶらないCSSを入力
			$(this).css({"padding-bottom":"50px"})
		}
		if($(this).height() > 179){
			//ReadmoreとかぶらないCSSを入力
			$(this).css({"height":"200px","overflow":"hidden","margin-bottom":"55px","box-shadow":"inset 0 -5px 3px #fff"})
		}
	});
	
	//add .clear at end of each widget
	$('.widget').append('<div class="clear"></div>');

	
	$('.has-events').hover(
		function(){
			$(this).find('.customized_ul').fadeIn('fast');
		},
		function(){
			$(this).find('.customized_ul').fadeOut('fast');
		}
	);
	/*
	$('.has-events').click(
		function(){
			
			if($(this).find('.clicked').length > 0){
				$(this).find('.clicked').removeClass('clicked');
			}else{
				$(this).find('.customized_ul').addClass('clicked');
			}
		}

	);
	*/
	$('.category-news article .teaser img').remove();
	$('embed').addClass("flash");
	

		var flashheight=0;
		var flashwidth=0;
		flashheight = $('.flash').height();
		flashwidth=$('.flash').width();
		$('.loading').css({'height':flashheight,'width':flashwidth});

	$('article p a img.aligncenter').parent().parent().css({'text-align':'center'});
	

	
});
