$(document).ready(function() {
	
	
	//closeThis y openThat
	$('.closeThis').click(
		function()
		{
			var e = $(this).attr('rel');
			$('#'+e).slideUp('fast');
			return false;
		}
	);
	$('.openThat').click(
		function()
		{
			var e = $(this).attr('rel');
			$('#'+e).slideDown('fast');
			return false;
		}
	);
	
	//formularios label encima del input
	$('.label-on-field .texto').each(
		function()
		{
			if($(this).attr('value')!='')
			{
				 $(this).parents('p').children('label').css('opacity', '0');
			}
		}
	);
	$('.label-on-field .texto').focus(
		function()
		{
           $(this).parents('p').children('label').css('opacity', '0.2')
        }
  	);
    $('.label-on-field .texto').blur(
        function()
        {
           if ($(this).val() == '') {
               $(this).parents('p').children('label').css('opacity', '1')
           }
        }
    );
    $('.label-on-field .texto').keyup(
        function()
        {
           if ($(this).val() == '') {
               $(this).parents('p').children('label').css('display', 'block')
           }
           else {
               $(this).parents('p').children('label').css('display', 'none')
           }
        }
    );
	//$('#contact-form :input').first().trigger('focus');
	

});
