function doClear(theText) { if (theText.value == theText.defaultValue) { theText.value = "" } }

// fixPNG(); http://www.tigir.com/js/fixpng.js (author Tigirlas Igor)
function fixPNG(element)
{
	if (/MSIE (5\.5|6).+Win/.test(navigator.userAgent))
	{
		var src;
		
		if (element.tagName=='IMG')
		{
			if (/\.png$/.test(element.src))
			{
				src = element.src;
				element.src = "/bitrix/templates/piano/images/1.gif";
			}
		}
		else
		{
			src = element.currentStyle.backgroundImage.match(/url\("(.+\.png)"\)/i)
			if (src)
			{
				src = src[1];
				element.runtimeStyle.backgroundImage="none";
			}
		}
		
		if (src) element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='scale')";
	}
}


$(document).ready(function(){
	//Examples of how to assign the ColorBox event to elements.
	$("a[rel='jack']").colorbox({transition:"none", width:"75%", height:"75%"});
	
	$("a[rel='ann_buy']").each(function(){
		var img = $(this).attr("href");
		var hght = Math.round($(this).find("img").eq(0).attr("height") * ($("#pict_big_ch").attr("width") / $(this).find("img").eq(0).attr("width")));
		$(this).attr("href", "javascript:void(0)");
		$(this).click(function(){
			$("#pict_big_ch").attr({ src: img, height: hght});
		});
	});

	// ------- Óãîëêè -------
	$(".news-detail .news-title .inner").corner("round 6px").parent().css('padding', '1px').corner("round 8px");
	$(".ann-gal .ann-gal-item").corner("round 3px");
	$(".ann-buy-item").corner("round 3px");
	// ------- Óãîëêè -------
});
