$(function(){
	
	$('div.widget').cornerz({radius:10, background: "#FFFFFF"});
	$('#header').cornerz({radius:10, background: "#FFFFFF"});
	$('#footer div.wrap').cornerz({radius:10, background: "#FFFFFF"});
	
	$('h3.pages_home').cornerz({radius:10, background: "#FFFFFF"});

	// открывать внешние ссылки в новом окне
	$(document).ready(function()
	{
		$('#loading').animate({ opacity: 0}, 1500 );
		$('#loading').hide('fast');
		
		var mydomain=window.location.hostname;

		$("a[href^=http:]").each(function()
		{
			if(this.host!=mydomain)
			{
				$(this).attr("target", "_blank");
			}
		});
	});
	
	
		
});
