// JavaScript Document

function initUploads()
{
	$('#moreImages').click(function(){
		if ($(this).parent().children('div').length <= 10)
			$(this).parent().children('div:first').clone().insertBefore($(this));
		else
			$(this).hide();
	});
	
	$('#multiupload').uploadify({
			'uploader'       : 'swf/uploadify.swf',
			'script'         : 'component/mitarbeiter/ajax/uploadify.php',
			'cancelImg'      : 'cms/css/img/buttons/onError_grey.png',
			'width'          : '300',
			'fileExt'		 : '*.jpg;*.jpeg;*.gif;*.png',
			'buttonText'	 : 'BROWSE',
			'wmode'			 : 'transparent',
			'fileDataName'	 : 'userfile',
			'scriptData'	 : {'id':$('#multiupload').attr('comid')},
			'auto'			 : true,
			'multi'          : true,
			'onComplete'	 :
				function(event,queueID,fileObj,response,data) 
				{ 
					$('#content').append(response); 
				},
			'onAllComplete'	 : 
				function(event,queueID,fileObj,response,data) 
				{ 
					// window.location.reload(); 
				}
	});
	
	$('.startupload').click(function(){
		$('#multiupload').fileUploadStart();	
	});
	
	$('.clearqueue').click(function(){
		$('#multiupload').fileUploadClearQueue();
	});	
}
