$(function() {
  // Remove x and y coordinates
  $('.clear_xy').livequery('submit', function() {
    this.submit(); return false;
  });
  $('.confirm').live('click', function() {
    return confirm('Are you sure you want to delete this?');
  });
  
  $('.hintify').live('focus', function() {
    if ($(this).val() == $(this).attr('title')) {
      $(this).val('');
    }
  }).live('blur', function() {
    if ($(this).val() == '') {
      $(this).val($(this).attr('title'));
    }
  }).each(function() {
    $(this).val($(this).attr('title'));
  });
  // Zebra tables
  $('.zebra tr:odd').addClass('zebra_table');
  
  //Fancybox
	$("a.iframe").each(function(){
	  $(this).fancybox({
  	  'width' : 500
  	});
  });
});
