 $(document).ready(function(){
    $("#switcher").show().cycle({fx:"scrollHorz", speed:2500, timeout:8000});
	
	$(".idatepicker").datepicker({
		showOn: 'button', 
		buttonText:'koledar', 
		buttonImage:'gif/calendar.gif',
		buttonImageOnly: true,
		dateFormat:'d.m.yy',
		speed: 500,
		firstDay: 1 /* monday */
	});
  });
  
function switchproject(obj)
{
	obj.blur();
	var content = document.getElementById('content');
	for(i=0;i<content.childNodes.length;i++)
	{
		child = content.childNodes[i];
		if(child.className == 'project_open')
		{
			child.className = 'project_closed';
		}
	}
	obj.parentNode.className = 'project_open';
	return false;
}

function switchproject2(obj)
{
	obj.blur();
	var content = document.getElementById('content');
	for(i=0;i<content.childNodes.length;i++)
	{
		child = content.childNodes[i];
		if(child.className == 'project_open2')
		{
			child.className = 'project_closed';
		}
	}
	obj.parentNode.className = 'project_open2';
	return false;
}