$(document).ready(function(){
    to_the_left=$(".left_top_bk").width();
    $(".top_form").css("left",to_the_left+736);
	var pos=0;
	
	$(".top_menu_a").mouseover(function(){
	  $(this).parent("div.menu_it").css("background-image","url(/templates/siren/pics/right_active.gif)");
	  $(this).parent("div.menu_it").parent("td.menu_it").css("background-image","url(/templates/siren/pics/left_active.gif)");
	});
	
	$(".top_menu_a").mouseout(function(){
	  $(this).parent("div.menu_it").css("background-image","url(/templates/siren/pics/right_norm.gif)");
	  $(this).parent("div.menu_it").parent("td.menu_it").css("background-image","url(/templates/siren/pics/left_norm.gif)");
	});
	
	$(".c_top").click(function(){
		
		
		if(pos<0){
		  $('.containre').animate({ top: '+=125' }, 300);
		  pos+=125;
		}
		
	});
	
	$(".c_bottom").click(function(){
		
		if($(".containre").children("a").length*125*(-1)+375<pos){
		  $('.containre').animate({ top: '-=125' }, 300);
		  pos-=125;
		}
		
	});
	
  });

  $(window).resize(function(){
    to_the_left=$(".left_top_bk").width();
    $(".top_form").css("left",to_the_left+736);
  });
