// JavaScript Document

$(document).ready(
	function() {

		if ( $(".gallery") ) {
			$(".gallery .item").hover(function(){
				$(this).children(".darker").hide();
				$(this).children(".image").addClass("hover");
			},function(){
				$(this).children(".darker").show();
				$(this).children(".image").removeClass("hover");
			});
		/*
			$(".gallery .image a, .gallery p a").mouseover(function(){
				//$('#content .darker').hide();
				//$('#content .here .darker').show();
				//$('.darker', $(this).parents("td") ).show();
			});
			$(".gallery .darker, .gallery p a").mouseout(function(){
				//$('#content .darker').hide();
				//$('#content .here .darker').show();
			});
		*/
		}

		if ( $(".navigation").length ) {
			$(".navigation a").hover(function(){
			$(this).parents("li").addClass("hover");
			},function(){
			$(this).parents("li").removeClass("hover");
			});
		}

		$(function(){
			if ( $('#search').length ) {
				$('#search').jqTransform();
			}
		});

	});

function wo(link,ww,hh,title) {
	w=window.open(link,'',(ww ? 'width='+ww+',' : '')+(hh ? 'height='+hh+',' : '')+'toolbar=0,scrollbars=0,resizable=yes');
	if (link.indexOf('.html')==-1) {
		if (document.layers) title='';
		w.document.open();
		w.document.write('<html><head><title>'+title+'</title><meta http-equiv=Content-Type content="text/html; charset=windows-1251"></head>');
		w.document.write('<body bgcolor=white marginwidth=0 marginheight=0 topmargin=0 leftmargin=0><table width=100% height=100% border=0 cellspacing=0 cellpadding=0><tr><td align=center><img src='+link+' width='+ww+' height='+hh+' border=0 alt=""></td></tr></table></body></html>');
		w.document.close();
	}
	w.focus();
}
function SubmitSearchForm( ) {

	if ( document.searchForm.searchtext.value == 'Поиск' || document.searchForm.searchtext.value.length == 0 ) {
		return false;
	}
	document.searchForm.submit( );

}