(function($){
  $(document).ready(function(){

    // Remove an item from the cart by setting its quantity to zero and posting the update form
    $('form#updatecart a.delete').show().click(function(){
      $(this).parents('tr').find('input.line_item_quantity').val(0);
      $(this).parents('form').submit();
      return false;
    });

	var detalles_visible = false;
	$('body.admin #content div.form-data div.advanced').hide();
	$('body.admin #content a#more-details').click(function(){
		if(detalles_visible == false){
			detalles_visible = true;
			$('body.admin #content div.form-data div.advanced').animate({height: 'show'}, 600);
	        $(this).text('Ocultar detalles...');
	        // animar el scroll
	        $('html,body').animate({
	        scrollTop: $("#more-details").offset().top
	        }, 1000);
		} else {
			detalles_visible = false;
			$('body.admin #content div.form-data div.advanced').animate({height: 'hide'}, 600);
	        $(this).text('Mostrar más detalles...');
		}
		return false;
	});
	
	$('table.index tr:odd').addClass('odd');
	$('table.index tr:even').addClass('even');

  $('.tips form select#facebook_page').change(function() {
    var page_name = $(this).find(':selected').html();
    $('.tips form input#facebook_page_name').attr('value',page_name);
  });
  });
})(jQuery);

