function showDialog(dialogId)
{
	//$("#"+dialogId).dialog(
	//{ 
	//	modal: true,
	//	title: 'העלאת קורות חיים',
	//	width:400
	//	});
		
		$("#" + dialogId).slideToggle();
}

function showContactUsDialog(jobnumber)
{
	$("#contact-us-form input[name='jobnumber']").val(jobnumber);
	$("#contact-us-form").dialog({"modal":true});
}

function showHeaderImages()
{
	var $hiddenImages = $('#header-image-container .img img:hidden');
	if($hiddenImages.length)
	{
		$hiddenImages.eq(0).fadeIn('slow');
		if($hiddenImages.length>1)
		{
			setTimeout(showHeaderImages,500);
		}
	}
}

$(document).ready(function(){
	setTimeout(showHeaderImages,500);
	
	$("#news .content").cycle({
		fx: 'fade',
		speed:500,
		timeout: 8000
	});
	
	$('.job-row .title').bind('click',function(){
		$(this).parent('.job-row').toggleClass('open');
return false;
	});
	$('#jobs-inner').tinyscrollbar();
});
