$(function () {
	
	var obCopyNews = new beonoAccent({ position: 'absolute', titlebarPosition: 'bottom'});
	
	$("#copy_news_to_blog").click(function () {
	
		var news_title = $("h1").text();
		var news_content = $(".b-news-text-article").text();
		var news_url = document.location.href;
				
		obCopyNews.setContentSource($(".copy_source"));
		obCopyNews.setContentSourceType('jquery');
		obCopyNews.setTitle('Нажмите Ctrl+C для копирования текста');
		obCopyNews.show();
		
		$(".copy_source").bind("focus", function () {
			$(this).select();
		});
		$(".copy_source").focus();
		
		return false;
		
	});
});