$(document).ready(function(){
	//setTimeout("", 500);
	alertaMensaje();
	
	$("input.hour").live('keyup',function(){
		if($(this).val()>0 && $(this).val()<=12){
			
		}else{
			$(this).val('');
		}
	})
	
	$("input.minute").live('keyup',function(){
		if(($(this).val()>=0 && $(this).val()<=60) && $(this).val().length <= 2){
			
		}else{
			$(this).val('');
		}
	})

	$("button").button();		
	$(".wysiwyg").rte();	
	$(".tabs").tabs();
	
	$(".accordion").accordion({
		autoHeight: false
	});

	$(".txtFecha").datepicker({
		dateFormat: 'yy-mm-dd',
		minDate: -20
	})
	
	$(".yVideo").live('click',function(){
		var idYoutube = $(this).attr('id').replace('pg-','');
		var embed = '<iframe width="400" height="300" frameborder="0" allowfullscreen="" src="http://www.youtube.com/embed/'+idYoutube+'"></iframe>';
		$(".pgPopup").popup({
			height: 'auto',
			draggable: true,
			title: 'Video de Youtube',
			content: embed
		});
		
		return false;
	})
	
	jQuery.fn.reset = function () {
	  $(this).each (function() { this.reset(); });
	  $("select,input,textarea",$(this)).each(function(){
		  $(this).parent().removeClass('failed');
		  $(this).parent().removeClass('approved');
	  })
	}
})

var gError = '<b style="color: red;">Error</b>: ocurrio un error inesperado ... :( ';

function alertaMensaje(){
	$(".messages").fadeTo('fast','0,5').delay(1000).fadeTo('fast',1);
}
