$(function(){
	
	// if($.browser.msie){ $('div.widget').cornerz({radius:10, background: "#FFFFFF", corners: "tl br tr bl"}); };
	
	// $('div.page_only a').mouseover(
	//	function(){ $(this).effect("highlight", {color: "#86A7CA"}, 400) });
	// $("a").hover( function() { $(this).fadeTo("fast", 0.2); $(this).fadeTo("slow", 1); });
	
	$(document).ready(function()
	{
		// блок «Загрузка страницы...»
		$('#loading').animate({ opacity: 0}, 1000 );
		$('#loading').hide('fast');
		
		// открывать внешние ссылки в новом окне
		/*
		var mydomain=window.location.hostname;
		$("a[href^=http:]").each(function()
		{
			if(this.host!=mydomain)
			{
				$(this).attr("target", "_blank");
			}
		});
		*/
	});
});

