$(document).ready(function() {
	$("#fileInput").uploadify({
		'uploader'       : 'scripts/jquery.uploadify/uploadify.swf',
		'script'         : '/scripts/jquery.uploadify/uploadify.php',
		'cancelImg'      : '/scripts/jquery.uploadify/cancel.png',
		'folder'         : '/imagenes/tablon-anuncios/instrumentos',
		'fileDesc'	 : 'Este es el texto',
		'fileExt'	 : '*.jpg;*.png;*.gif',
		'queueID'        : 'fileQueue',
		'sizeLimit'	 : '35840',
		'auto'           : true,
		'multi'          : false,
		'onComplete' : function(event, queueID, fileObj, response, data) {
     		$('#filesUploaded').replaceWith('<p id=filesUploaded>Imagen cargada correctamente</p>');
     		$('#instrumento_img').replaceWith('<input type=hidden id=instrumento_img name=instrumento_img value='+fileObj.filePath+' />');
     		$('#thumb').replaceWith('<img id=thumb src='+fileObj.filePath+' />');
		}
	});
	$("#avatar").uploadify({
		'uploader'       : '/scripts/jquery.uploadify/uploadify.swf',
		'script'         : '/scripts/jquery.uploadify/uploadify.php',
		'cancelImg'      : '/scripts/jquery.uploadify/cancel.png',
		'folder'         : '/imagenes/usuarios/avatar',
		'fileDesc'	 : 'Este es el texto',
		'fileExt'	 : '*.jpg;*.png;*.gif',
		'queueID'        : 'fileQueue',
		'sizeLimit'	 : '35840',
		'auto'           : true,
		'multi'          : false,
		'onComplete' : function(event, queueID, fileObj, response, data) {
     		$('#filesUploaded').replaceWith('<p id=filesUploaded>Imagen cargada correctamente</p>');
     		$('#usuario_avatar').replaceWith('<input type=hidden id=usuario_avatar name=usuario_avatar value='+fileObj.filePath+' />');
     		$('#thumb_avatar').replaceWith('<img id=thumb_avatar src='+fileObj.filePath+' />');
		}
	});
	$("#mp3").uploadify({
		'uploader'       : '/scripts/jquery.uploadify/uploadify.swf',
		'script'         : '/scripts/jquery.uploadify/uploadify.php',
		'cancelImg'      : '/scripts/jquery.uploadify/cancel.png',
		'folder'         : '/audio/bandas',
		'fileDesc'	 : 'Este es el texto',
		'fileExt'	 : '*.mp3',
		'queueID'        : 'fileQueue',
		'sizeLimit'	 : '35840000',
		'auto'           : true,
		'multi'          : false,
		'onComplete' : function(event, queueID, fileObj, response, data) {
     		$('#filesUploaded').replaceWith('<p id=filesUploaded>Audio cargado correctamente</p>');
     		$('#audio_mp3').replaceWith('<input type=hidden id=audio_mp3 name=audio_mp3 value='+fileObj.filePath+' />');
     		$('#audio_mp3_preview').replaceWith('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="165" height="38" id="niftyPlayer1" align=""><param name=movie value="/player/niftyplayer.swf?file='+fileObj.filePath+'&as=1"><param name=quality value=high><param name=bgcolor value=#FFFFFF><embed src="/player/niftyplayer.swf?file='+fileObj.filePath+'&as=1" quality=high bgcolor=#FFFFFF width="165" height="38" name="niftyPlayer1" align="" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>');
		}
	});
});
