$(document).ready(function(){
    
    $(".search-keywords").focus(function(){
	if ($(this).attr("value") == "Введите ключевые слова ...") {
	    $(this).attr("value", "");
	}
    }).blur(function(){
	if ($(this).attr("value") == "") {
	    $(this).attr("value", "Введите ключевые слова ...");
	}
    });

    $(".side-tabs").tabs();
    $(".top-auth a").click(function(){
	$(this).attr("href", "javascript:void(0)");
	$("#auth-login").toggle();
    });
    $(".auth-ctrl").click(function(){
	$(this).attr("href", "javascript:void(0)");
	$("#auth-login").toggle();
    });
    $(".dropdown").click(function(){
	$(this).attr("href", "javascript:void(0)");
	$(".top-menu:visible").hide();
	$(this).next(".top-menu").toggle();
    });
    $(document).click(function(){
	$(".top-menu:visible").hide();
    });
    $(".dropdown, .txt").click(function(e){
	e.stopPropagation();
    });
    $("div.required label").prepend("<span>*</span>");
});

function showlink(hrf, tgt, cls, txt) {
    var out = "";
    out += "<a href='"+hrf+"'";
    if (tgt) {
	out += " target='"+tgt+"'";
    }
    if (cls) {
	out += " target='"+cls+"'";
    }
    out += ">"+txt+"</"+"a>";
    document.write(out);
}
