// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(document).ready(function() {
  
	//IE6 png fix
	$("img.icon, img.png").ifixpng();

});

function insert_link_field(html)
{
	$("#link_fields").append(html);
}

function mark_for_destroy(element)
{
	$(element).siblings('.should_destory').val(1);
	$(element).parents('.link_field').hide();
	$(element).parents('.link_field_edit').hide();
}

function remove_link(element)
{
	$(element).parents('.link_field').remove();
	$(element).parents('.link_field_edit').remove();
}