
var menuout = false;
var _date = new Date();
var _month = ["января", "февраля","марта","апреля","мая","июня","июля","августа","сентября","октября","ноября","декабря"];
//alert(1);

function show_hide_text(inp , text){
	$(inp).focus(function (){ if (text == $(inp).val()) $(inp).val("");});
	$(inp).blur(function (){ if ($(inp).val() == "") $(inp).val(text); });
}

$(document).ready(function() {

 // $('#menu > ul > li').mouseover(function () {$(this).addClass('hover');});
 // $('#menu > ul > li').mouseout(function () {$(this).removeClass('hover');});


  
  $("a.lightbox").lightBox();
  $("input[name=rand]").hide();  
  
//  $("li.box").mouseover(function (){$(this).css("background","#d3c4b2");});
//  $("li.box").mouseout(function (){$(this).css("background","#d3ccb4");});  

	
	$("#cal b.month").html(_month[ _date.getMonth() ] );
	$("#cal b.day").html( _date.getDate() );

	$("input").each(function(){$(this).addClass(this.type);});
	$("img[align=left]").css("float","left");
	$("img[align=right]").css("float","right");

	$("b.newthemetable").toggle(function(){$("table.newthemetable").show();},function(){$("table.newthemetable").hide();});
	
	show_hide_text('#logininp' , "login");
	show_hide_text('#passinp' , "password");
});



