// JavaScript Document
$(document).ready(function()
	{
		inicMulti();
		$('a','#multifoot').click(function()
		{
			
			
			var id =this.id;
			id='#'+id.replace("_label","");
			var vis=$(id).css('display');
			if($(id).length!=0)
			{
				if(vis=='none')
				{
					$("ul","#multicointainer").hide(1000);
					$(id).show(1000);
					$(".activeLabel").removeClass("activeLabel");
					$(this).addClass("activeLabel");
				}
			}
			return false;
		});
		
		
		
		
		$("#multiLeft").click(function(){
			$("ul","#multicointainer").each(function()
			{
				if($(this).css('display')!="none")
				{
					if(parseInt($(this).css('margin-left'))<0)
					{
					$(this).animate({marginLeft: "+=620px"}, 1000);
					}
					
				}
			});
  		});
		$("#multiRight").click(function(){
			$("ul","#multicointainer").each(function()
			{
				if($(this).css('display')!="none")
				{
					var size =-620* ($("li",this).length -1) ;
					if(parseInt($(this).css('margin-left'))>size)
					{
					$(this).animate({marginLeft: "-=620px"}, 1000);
					}
				}
			});
  		});
		
		
		
		
		
		
		
		
		
		
		
		
		
	});
	function inicMulti()
	{
		$("#m_fenykep").hide();
	}