// JavaScript Document
$(document).ready(function(){

//right menu
	$("a.plus").click(function(){
		$(this).next("a").next("ul").slideToggle("slow");
		$(this).toggleClass("active");
		return false;
     });
	

//tags	
	$("div.stext a").hover(function() {
        $(this).animate({ backgroundColor: "#4f94d0", color: "#ffffff" }, 700);
    },function()
    {
        $(this).animate({ backgroundColor: "#ffffff", color: "#006675" }, 200);
    });
	
//login
	
	$("#login_link").click(
		function(){
			if($(".login_block").css('display')=="none"){
				$(".top_reklama").animate({opacity: "hide", right: "-200"}, "slow");
				$(".login_block").animate({opacity: "show", right: "40"}, "slow")
			}else{
				$(".login_block").animate({opacity: "hide", right: "-200"}, "slow");
				$(".top_reklama").animate({opacity: "show", right: "40"}, "slow");
			}
			return false;
		}
	);


//registration
	$(".reg_link").click(function(){
		$(".registration_table").slideToggle("slow");
     });
	
});